From 10c01d0d566d72c4f3c3e8f7c792cf4ca5cd515b Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 23 Mar 2020 05:21:08 +0200 Subject: [PATCH] Use std::quick_exit instead of ::quick_exit --- 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 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 }