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/detail/apply.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/function/detail/apply.h') diff --git a/src/function/detail/apply.h b/src/function/detail/apply.h index c06fe68..4b550e6 100644 --- a/src/function/detail/apply.h +++ b/src/function/detail/apply.h @@ -33,7 +33,7 @@ template < template class Function, typename... Arguments > -struct apply_single : apply_variadic { +struct apply_single { template using function = typename apply_variadic< Function, @@ -45,7 +45,7 @@ template < template class Function, typename... Arguments > -struct apply_pair : apply_variadic { +struct apply_pair { template using function = typename apply_variadic< Function, -- cgit v1.2.3