We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff405fc commit 9d78e06Copy full SHA for 9d78e06
include/cpp_common/assert.hpp
@@ -143,9 +143,9 @@ class AssertFailedException : public std::exception {
143
const std::string str; ///< Holds what() we got as message
144
145
public:
146
- const char *what() const throw() override;
+ const char *what() const noexcept override;
147
explicit AssertFailedException(std::string msg);
148
- ~AssertFailedException() throw() override {}
+ ~AssertFailedException() noexcept override {}
149
};
150
151
#endif // INCLUDE_CPP_COMMON_ASSERT_HPP_
0 commit comments