From 957a07333f3ac6fc85db34fc50a9be7e331aab12 Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Wed, 30 Jan 2013 17:48:52 +0100 Subject: [PATCH] remove is_terminated() in joinable() --- include/boost/fiber/fiber.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/fiber/fiber.hpp b/include/boost/fiber/fiber.hpp index 4a1258a7..5ec5d903 100644 --- a/include/boost/fiber/fiber.hpp +++ b/include/boost/fiber/fiber.hpp @@ -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(); }