aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/drop.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/drop.h')
-rw-r--r--src/list/operation/drop.h4
1 files changed, 2 insertions, 2 deletions
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<Drop<
Substract<Count, Size<1>>,
Tail<Current>
- >::type type;
+ >> type;
};
template <typename Current>