From e24f25ada7e8f48dc35cb235e045a4324bccb4f2 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 14 Feb 2015 10:43:49 +0100 Subject: Introduced `Eval` function evaluation helper * replaces `typename *::type` constructs with `Eval` applications * aims to further unify function evaluation --- src/list/operation/drop.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/list/operation/drop.h') diff --git a/src/list/operation/drop.h b/src/list/operation/drop.h index 651dad5..c61983b 100644 --- a/src/list/operation/drop.h +++ b/src/list/operation/drop.h @@ -10,10 +10,10 @@ template < typename Current > struct Drop { - typedef typename Drop< + typedef Eval>, Tail - >::type type; + >> type; }; template -- cgit v1.2.3