From 81df44e80be80ae4e373cb051bb2e255d38a4004 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 6 Sep 2018 05:44:56 +0300 Subject: [PATCH] MinGW-w64 has no quick_exit either --- include/boost/core/quick_exit.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/core/quick_exit.hpp b/include/boost/core/quick_exit.hpp index 4e9ec48..aa557f4 100644 --- a/include/boost/core/quick_exit.hpp +++ b/include/boost/core/quick_exit.hpp @@ -39,7 +39,7 @@ BOOST_NORETURN void quick_exit( int code ) BOOST_NOEXCEPT ::_exit( code ); -#elif defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR) +#elif defined(__MINGW32__) ::_exit( code );