From a8b42f07b6c3e397a13594c07dc9359231c2ef50 Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Sun, 14 Jun 2015 18:03:05 +0200 Subject: [PATCH] dead code --- fluent/Continuable.h | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/fluent/Continuable.h b/fluent/Continuable.h index fd6bea7..0c57241 100644 --- a/fluent/Continuable.h +++ b/fluent/Continuable.h @@ -35,24 +35,6 @@ namespace detail typedef ContinuableState, void> DefaultContinuableState; - /// The unwrap which is used to extract continuable parameter types. - template - struct continuable_unwrap; - - // First parameter is the state. - template - struct continuable_unwrap, _CArgs...> - { - typedef ContinuableState<_SArgs...> state_t; - - typedef Callback<_CArgs...> callback_t; - }; - - // No state is given use an empty one. - template - struct continuable_unwrap<_CArgs...> - : public continuable_unwrap { }; - /// Corrects void return types from functional types which should be Continuable> /* template