From ed3875950806d2d66f4d6dbb4080f8352a45cf46 Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Sun, 27 Dec 2015 14:21:47 +0100 Subject: [PATCH] remove noexcept from new_properties() --- include/boost/fiber/algorithm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/fiber/algorithm.hpp b/include/boost/fiber/algorithm.hpp index 11342a39..1116a65e 100644 --- a/include/boost/fiber/algorithm.hpp +++ b/include/boost/fiber/algorithm.hpp @@ -98,7 +98,7 @@ struct sched_algorithm_with_properties : public sched_algorithm_with_properties_ // Override this to customize instantiation of PROPS, e.g. use a different // allocator. Each PROPS instance is associated with a particular // context. - virtual fiber_properties * new_properties( context * f) noexcept { + virtual fiber_properties * new_properties( context * f) { return new PROPS( f); } };