2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-19 02:12:24 +00:00

remove noexcept from new_properties()

This commit is contained in:
Oliver Kowalke
2015-12-27 14:21:47 +01:00
parent ba49a575ce
commit ed38759508

View File

@@ -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);
}
};