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/delete_nth.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/list/operation/delete_nth.h') diff --git a/src/list/operation/delete_nth.h b/src/list/operation/delete_nth.h index 03df12a..6127ade 100644 --- a/src/list/operation/delete_nth.h +++ b/src/list/operation/delete_nth.h @@ -12,8 +12,8 @@ template < typename List > using DeleteNth = Append< - typename Take::type, - typename Drop>, List>::type + Eval>, + Eval>, List>> >; } -- cgit v1.2.3