Remove _WIN32 guard.

This commit is contained in:
Francis ANDRE 2018-05-19 10:13:26 +02:00
parent 95ad2452c0
commit 8951b90bbe

View File

@ -128,13 +128,11 @@ void TestCase::run(TestResult *result)
result->addError(this, new CppUnitException(msg)); result->addError(this, new CppUnitException(msg));
} }
#if !defined(_WIN32)
catch (...) catch (...)
{ {
CppUnitException *e = new CppUnitException ("unknown exception"); CppUnitException *e = new CppUnitException ("unknown exception");
result->addError (this, e); result->addError (this, e);
} }
#endif
tearDown (); tearDown ();
result->endTest(this); result->endTest(this);
} }