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

remove noexcept from fiber::detach()

This commit is contained in:
Oliver Kowalke
2015-09-27 20:40:36 +02:00
parent 43da6f5c1c
commit f0cd02e489
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ fiber::interrupt() noexcept {
}
void
fiber::detach() noexcept {
fiber::detach() {
if ( ! joinable() ) {
throw fiber_resource_error( static_cast< int >( std::errc::invalid_argument),
"boost fiber: fiber not joinable");