diff --git a/fluent/Continuable.h b/fluent/Continuable.h index a861466..9235adb 100644 --- a/fluent/Continuable.h +++ b/fluent/Continuable.h @@ -27,10 +27,12 @@ namespace detail } // detail template -struct ContinuableState; - +struct ContinuableState +/* +; template struct ContinuableState +*/ { }; @@ -57,11 +59,11 @@ private: public: /// Deleted copy construct template - explicit Continuable(Continuable<_RCTy, _RState> const&) = delete; + Continuable(Continuable<_RCTy, _RState> const&) = delete; /// Move construct template - explicit Continuable(Continuable<_RCTy, _RState>&& right) + Continuable(Continuable<_RCTy, _RState>&& right) : _released(right._released) { right._released = true;