From dfd5a0b8dba7c25a1f04718d13b4d4dc29698c7f Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 5 Sep 2018 06:56:59 +0300 Subject: [PATCH] Remove dead #else branch --- include/boost/core/lightweight_test.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/boost/core/lightweight_test.hpp b/include/boost/core/lightweight_test.hpp index 0994561..20d625e 100644 --- a/include/boost/core/lightweight_test.hpp +++ b/include/boost/core/lightweight_test.hpp @@ -58,10 +58,8 @@ public: #if defined(_MSC_VER) ::_exit( 3 ); -#elif 1 - ::_Exit( 3 ); #else - std::abort(); + ::_Exit( 3 ); #endif } }