1
0
forked from boostorg/core

Remove dead #else branch

This commit is contained in:
Peter Dimov
2018-09-05 06:56:59 +03:00
parent d8c0768788
commit dfd5a0b8db

View File

@ -58,10 +58,8 @@ public:
#if defined(_MSC_VER) #if defined(_MSC_VER)
::_exit( 3 ); ::_exit( 3 );
#elif 1
::_Exit( 3 );
#else #else
std::abort(); ::_Exit( 3 );
#endif #endif
} }
} }