From 8951b90bbeb602b5946c2a79bc8dbcecba8f2132 Mon Sep 17 00:00:00 2001 From: Francis ANDRE Date: Sat, 19 May 2018 10:13:26 +0200 Subject: [PATCH] Remove _WIN32 guard. --- CppUnit/src/TestCase.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/CppUnit/src/TestCase.cpp b/CppUnit/src/TestCase.cpp index f23c93226..bb97d44f7 100644 --- a/CppUnit/src/TestCase.cpp +++ b/CppUnit/src/TestCase.cpp @@ -128,13 +128,11 @@ void TestCase::run(TestResult *result) result->addError(this, new CppUnitException(msg)); } -#if !defined(_WIN32) catch (...) { CppUnitException *e = new CppUnitException ("unknown exception"); result->addError (this, e); } -#endif tearDown (); result->endTest(this); }