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

remoce noexcept specifier from context::join()

This commit is contained in:
Oliver Kowalke
2015-09-21 20:33:09 +02:00
parent 1ad58fbba1
commit 38457260bc
2 changed files with 2 additions and 2 deletions

View File

@@ -267,7 +267,7 @@ public:
void release() noexcept;
void join() noexcept;
void join();
void yield() noexcept;

View File

@@ -144,7 +144,7 @@ context::release() noexcept {
}
void
context::join() noexcept {
context::join() {
// get active context
context * active_ctx = context::active();
try {