Merge pull request #2773 from Quuxplusone:replace-noexcept

PiperOrigin-RevId: 305707266
This commit is contained in:
Mark Barolak
2020-04-16 13:32:14 -04:00

View File

@@ -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) {