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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/function/apply.h b/src/function/apply.h
index 553ae7f..402b654 100644
--- a/src/function/apply.h
+++ b/src/function/apply.h
@@ -17,7 +17,7 @@ template <
template<typename...> class Function,
typename... Arguments
>
-struct Apply : Cond<
+using Apply = Cond<
Branch<
GreaterThan<detail::count_placeholders<Arguments...>, Size<2>>,
detail::apply_variadic<Function, Arguments...>
@@ -33,7 +33,7 @@ struct Apply : Cond<
Else<
detail::apply_none<Function, Arguments...>
>
-> { };
+>;
}