From 687df5744fab6c488f185992b2db3bf52fa137d2 Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Thu, 20 Mar 2014 08:20:27 +0100 Subject: [PATCH] remove unnecessary fiber ctor --- include/boost/fiber/fiber.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/boost/fiber/fiber.hpp b/include/boost/fiber/fiber.hpp index 8aae85cf..2f862228 100644 --- a/include/boost/fiber/fiber.hpp +++ b/include/boost/fiber/fiber.hpp @@ -64,10 +64,6 @@ public: impl_( 0) {} - explicit fiber( detail::worker_fiber * imp) BOOST_NOEXCEPT : - impl_( imp) - {} - #ifndef BOOST_NO_RVALUE_REFERENCES #ifdef BOOST_MSVC typedef void ( * fiber_fn)();