Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/cpp_common/assert.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ class AssertFailedException : public std::exception {
const std::string str; ///< Holds what() we got as message

public:
virtual const char *what() const throw();
const char *what() const noexcept override;
explicit AssertFailedException(std::string msg);
virtual ~AssertFailedException() throw() {}
~AssertFailedException() noexcept override {}
};

#endif // INCLUDE_CPP_COMMON_ASSERT_HPP_