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/placeholder.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/function/detail/placeholder.h') diff --git a/src/function/detail/placeholder.h b/src/function/detail/placeholder.h index 8105de5..00818b7 100644 --- a/src/function/detail/placeholder.h +++ b/src/function/detail/placeholder.h @@ -13,7 +13,7 @@ namespace detail { struct placeholder_tag { }; -template +template struct placeholder : placeholder_tag { }; template @@ -28,8 +28,8 @@ struct resolve_placeholder { }; template < - typename Partials, - int Index + typename Partials, + std::size_t Index > struct resolve_placeholder> { typedef Nth, Partials> type; -- cgit v1.2.3