From 46e174935b122c0da4b51532a7f683a512eeaf65 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 15 Feb 2015 14:07:50 +0100 Subject: Moved class-based implementations into `detail` namespace * while class templates enable e.g. hiding implementation details they also require evaluation via `Eval` ** this clutters up the actual logic and is now hidden behind aliae that perform the evaluation --- src/function/apply.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/function/apply.h') 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>, Size<2>>, + GreaterThan, Size<2>>, detail::apply_variadic >, Pair< - IsEqualValue>, Size<2>>, + IsEqualValue, Size<2>>, detail::apply_pair >, Pair< - IsEqualValue>, Size<1>>, + IsEqualValue, Size<1>>, detail::apply_single >, Pair< Boolean, detail::apply_none > ->::type { }; +> { }; } -- cgit v1.2.3