diff --git a/include/boost/core/quick_exit.hpp b/include/boost/core/quick_exit.hpp index aa557f4..f05b6c2 100644 --- a/include/boost/core/quick_exit.hpp +++ b/include/boost/core/quick_exit.hpp @@ -49,7 +49,7 @@ BOOST_NORETURN void quick_exit( int code ) BOOST_NOEXCEPT #else - ::quick_exit( code ); + std::quick_exit( code ); #endif }