2
0
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:
Oliver Kowalke
2013-01-30 17:48:52 +01:00
parent 58c09646e7
commit 957a07333f

View File

@@ -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(); }