mirror of
https://github.com/boostorg/fiber.git
synced 2026-02-14 00:32:17 +00:00
remove is_terminated() in joinable()
This commit is contained in:
@@ -326,7 +326,7 @@ public:
|
||||
{ impl_.swap( other.impl_); }
|
||||
|
||||
bool joinable() const BOOST_NOEXCEPT
|
||||
{ return impl_ && ! impl_->is_terminated(); }
|
||||
{ return impl_ /* && ! impl_->is_terminated() */; }
|
||||
|
||||
id get_id() const BOOST_NOEXCEPT
|
||||
{ return impl_ ? impl_->get_id() : id(); }
|
||||
|
||||
Reference in New Issue
Block a user