From b7c987f83c600ce52f031b32b5f20617dcde2fc2 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 15 Feb 2022 02:08:30 +0200 Subject: [PATCH] Mark quick_exit as inline --- 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 40ead1d..ff1bda3 100644 --- a/include/boost/core/quick_exit.hpp +++ b/include/boost/core/quick_exit.hpp @@ -33,7 +33,7 @@ extern "C" _Noreturn void quick_exit(int); namespace boost { -BOOST_NORETURN void quick_exit( int code ) BOOST_NOEXCEPT +BOOST_NORETURN inline void quick_exit( int code ) BOOST_NOEXCEPT { #if defined(_MSC_VER) && _MSC_VER < 1900