diff --git a/include/boost/core/quick_exit.hpp b/include/boost/core/quick_exit.hpp index f05b6c2..40ead1d 100644 --- a/include/boost/core/quick_exit.hpp +++ b/include/boost/core/quick_exit.hpp @@ -16,7 +16,7 @@ // http://www.boost.org/LICENSE_1_0.txt) #include -#include +#include #if defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR) @@ -49,7 +49,7 @@ BOOST_NORETURN void quick_exit( int code ) BOOST_NOEXCEPT #else - std::quick_exit( code ); + ::quick_exit( code ); #endif }