From 38457260bc84378230067cd845d9ae847dcda598 Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Mon, 21 Sep 2015 20:33:09 +0200 Subject: [PATCH] remoce noexcept specifier from context::join() --- include/boost/fiber/context.hpp | 2 +- src/context.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/fiber/context.hpp b/include/boost/fiber/context.hpp index 85b47054..64511415 100644 --- a/include/boost/fiber/context.hpp +++ b/include/boost/fiber/context.hpp @@ -267,7 +267,7 @@ public: void release() noexcept; - void join() noexcept; + void join(); void yield() noexcept; diff --git a/src/context.cpp b/src/context.cpp index feffb1de..772fa68c 100644 --- a/src/context.cpp +++ b/src/context.cpp @@ -144,7 +144,7 @@ context::release() noexcept { } void -context::join() noexcept { +context::join() { // get active context context * active_ctx = context::active(); try {