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