From 45e03880105008fb136138ae85cc21e2c19c2349 Mon Sep 17 00:00:00 2001 From: Naios Date: Thu, 11 Jun 2015 17:54:54 +0200 Subject: [PATCH] fix clang & gcc build --- fluent/Continuable.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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;