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:
@@ -267,7 +267,7 @@ public:
|
||||
|
||||
void release() noexcept;
|
||||
|
||||
void join() noexcept;
|
||||
void join();
|
||||
|
||||
void yield() noexcept;
|
||||
|
||||
|
||||
@@ -144,7 +144,7 @@ context::release() noexcept {
|
||||
}
|
||||
|
||||
void
|
||||
context::join() noexcept {
|
||||
context::join() {
|
||||
// get active context
|
||||
context * active_ctx = context::active();
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user