From d274fc571c3980b5ac04cbe1416cf2205e6c99f7 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Fri, 20 Nov 2015 17:09:48 +0000 Subject: [PATCH] Added noexcept to CustomStdException destructor --- projects/SelfTest/ExceptionTests.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/SelfTest/ExceptionTests.cpp b/projects/SelfTest/ExceptionTests.cpp index 949962ec15..dfcaa4b8a1 100644 --- a/projects/SelfTest/ExceptionTests.cpp +++ b/projects/SelfTest/ExceptionTests.cpp @@ -112,6 +112,7 @@ class CustomStdException : public std::exception CustomStdException( const std::string& msg ) : m_msg( msg ) {} + ~CustomStdException() CATCH_NOEXCEPT {} std::string getMessage() const {