Mark quick_exit as inline

This commit is contained in:
Peter Dimov
2022-02-15 02:08:30 +02:00
parent 89d8efb7ff
commit b7c987f83c

View File

@ -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