From cb2a79cd818fbfa50e7bdebd090e681a0073f9d5 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 7 Mar 2015 16:14:11 +0100 Subject: Changed `tav::Apply` implementation selection to template alias * there is no reason to differ from the rest of the library and use inheritance in this instance * added link to blog article on the _Scheme metaphor_ to `README.md` --- src/function/apply.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/function/apply.h') 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 class Function, typename... Arguments > -struct Apply : Cond< +using Apply = Cond< Branch< GreaterThan, Size<2>>, detail::apply_variadic @@ -33,7 +33,7 @@ struct Apply : Cond< Else< detail::apply_none > -> { }; +>; } -- cgit v1.2.3