aboutsummaryrefslogtreecommitdiff
path: root/src/function/apply.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/function/apply.h')
-rw-r--r--src/function/apply.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/function/apply.h b/src/function/apply.h
index f4de292..591fa8a 100644
--- a/src/function/apply.h
+++ b/src/function/apply.h
@@ -19,22 +19,22 @@ template <
>
struct Apply : Cond<
Pair<
- GreaterThan<Eval<detail::count_placeholders<Arguments...>>, Size<2>>,
+ GreaterThan<detail::count_placeholders<Arguments...>, Size<2>>,
detail::apply_variadic<Function, Arguments...>
>,
Pair<
- IsEqualValue<Eval<detail::count_placeholders<Arguments...>>, Size<2>>,
+ IsEqualValue<detail::count_placeholders<Arguments...>, Size<2>>,
detail::apply_pair<Function, Arguments...>
>,
Pair<
- IsEqualValue<Eval<detail::count_placeholders<Arguments...>>, Size<1>>,
+ IsEqualValue<detail::count_placeholders<Arguments...>, Size<1>>,
detail::apply_single<Function, Arguments...>
>,
Pair<
Boolean<true>,
detail::apply_none<Function, Arguments...>
>
->::type { };
+> { };
}