aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/delete_nth.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/delete_nth.h')
-rw-r--r--src/list/operation/delete_nth.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/list/operation/delete_nth.h b/src/list/operation/delete_nth.h
index 6127ade..18e52bf 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<
- Eval<Take<Index, List>>,
- Eval<Drop<Add<Index, Size<1>>, List>>
+ Take<Index, List>,
+ Drop<Add<Index, Size<1>>, List>
>;
}