2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-20 14:42:21 +00:00

remove noexcept from dtor of context+scheduler

This commit is contained in:
Oliver Kowalke
2015-12-05 15:14:31 +01:00
parent ab2d0ae52e
commit e9a0d4d669
2 changed files with 3 additions and 3 deletions

View File

@@ -115,7 +115,7 @@ context_initializer::context_initializer() {
}
}
context_initializer::~context_initializer() noexcept {
context_initializer::~context_initializer() {
if ( 0 == --counter) {
context * main_ctx = context::active_;
BOOST_ASSERT( main_ctx->is_main_context() );
@@ -187,7 +187,7 @@ context::context( dispatcher_context_t, boost::context::preallocated const& pall
}} {
}
context::~context() noexcept {
context::~context() {
BOOST_ASSERT( wait_queue_.empty() );
BOOST_ASSERT( ! ready_is_linked() );
BOOST_ASSERT( ! remote_ready_is_linked() );