diff options
Diffstat (limited to '3rdparty/unittest-cpp')
-rw-r--r-- | 3rdparty/unittest-cpp/UnitTest++/Posix/SignalTranslator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/unittest-cpp/UnitTest++/Posix/SignalTranslator.h b/3rdparty/unittest-cpp/UnitTest++/Posix/SignalTranslator.h index 50da5f996f6..5b98d977b93 100644 --- a/3rdparty/unittest-cpp/UnitTest++/Posix/SignalTranslator.h +++ b/3rdparty/unittest-cpp/UnitTest++/Posix/SignalTranslator.h @@ -22,8 +22,8 @@ private: struct sigaction m_old_SIGTRAP_action; struct sigaction m_old_SIGSEGV_action; struct sigaction m_old_SIGBUS_action; - struct sigaction m_old_SIGABRT_action; - struct sigaction m_old_SIGALRM_action; + //struct sigaction m_old_SIGABRT_action; + //struct sigaction m_old_SIGALRM_action; }; #if !defined (__GNUC__) @@ -35,7 +35,7 @@ private: #define UNITTEST_THROW_SIGNALS_POSIX_ONLY \ UnitTest::SignalTranslator sig; \ if (UNITTEST_EXTENSION sigsetjmp(*UnitTest::SignalTranslator::s_jumpTarget, 1) != 0) \ - throw ("Unhandled system exception"); + throw ("Unhandled system exception"); } |