diff options
Diffstat (limited to 'src/function')
-rw-r--r-- | src/function/apply.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/function/apply.h b/src/function/apply.h index 6012a01..8e780e0 100644 --- a/src/function/apply.h +++ b/src/function/apply.h @@ -3,6 +3,9 @@ #include <type_traits> +#include "list/list.h" +#include "list/operation/nth.h" + namespace tav { namespace detail { @@ -45,8 +48,6 @@ template < typename... Arguments > struct Apply { - typedef typename tav::List<Arguments...>::type argument_list; - template <typename... Partials> using variadic_type = Function< typename detail::resolve_placeholder< |