From 106a7c0939c4f38359892b56d727acdc4b3c92a6 Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Tue, 27 Aug 2019 07:28:28 -0400 Subject: [PATCH] Mark throw_exception BOOST_NORETURN --- include/boost/core/default_allocator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/core/default_allocator.hpp b/include/boost/core/default_allocator.hpp index a202f66..9fc3ea2 100644 --- a/include/boost/core/default_allocator.hpp +++ b/include/boost/core/default_allocator.hpp @@ -19,7 +19,7 @@ Distributed under the Boost Software License, Version 1.0. namespace boost { #if defined(BOOST_NO_EXCEPTIONS) -void throw_exception(const std::exception&); +BOOST_NORETURN void throw_exception(const std::exception&); #endif namespace default_ {