Malcolm Tyrrell 5 years ago
parent
commit
2977643352
1 changed files with 2 additions and 3 deletions
  1. 2 3
      test/unit/Common/utAssertHandler.cpp

+ 2 - 3
test/unit/Common/utAssertHandler.cpp

@@ -52,11 +52,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 namespace
 {
     /// An exception which is thrown by the testAssertHandler
-    struct TestAssertException : std::exception
+    struct TestAssertException
     {
         TestAssertException(const char* failedExpression, const char* file, int line)
-            : std::exception("Test Assert Exception")
-            , m_failedExpression(failedExpression)
+            : m_failedExpression(failedExpression)
             , m_file(file)
             , m_line(line)
         {