From 28aece6a7aea60f9ce84eaa777c456327a81f30a 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 949962ec..dfcaa4b8 100644 --- a/projects/SelfTest/ExceptionTests.cpp +++ b/projects/SelfTest/ExceptionTests.cpp @@ -112,6 +112,7 @@ public: CustomStdException( const std::string& msg ) : m_msg( msg ) {} + ~CustomStdException() CATCH_NOEXCEPT {} std::string getMessage() const {