Commit b51a49e0 authored by Mark Barolak's avatar Mark Barolak
Browse files

Merge pull request #2773 from Quuxplusone:replace-noexcept

PiperOrigin-RevId: 305707266
parents e3f0319d 6ed4e716
......@@ -59,7 +59,7 @@ TEST(CxxExceptionDeathTest, ExceptionIsFailure) {
class TestException : public std::exception {
public:
const char* what() const throw() override { return "exceptional message"; }
const char* what() const noexcept override { return "exceptional message"; }
};
TEST(CxxExceptionDeathTest, PrintsMessageForStdExceptions) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment