Skip to content

Commit

Permalink
Added noexcept to CustomStdException destructor
Browse files Browse the repository at this point in the history
  • Loading branch information
philsquared committed Nov 20, 2015
1 parent 7e15d9b commit d274fc5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions projects/SelfTest/ExceptionTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ class CustomStdException : public std::exception
CustomStdException( const std::string& msg )
: m_msg( msg )
{}
~CustomStdException() CATCH_NOEXCEPT {}

std::string getMessage() const
{
Expand Down

0 comments on commit d274fc5

Please sign in to comment.