aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/take.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/take.h')
-rw-r--r--src/list/operation/take.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/list/operation/take.h b/src/list/operation/take.h
index db25640..c396c28 100644
--- a/src/list/operation/take.h
+++ b/src/list/operation/take.h
@@ -10,13 +10,13 @@ template <
typename Current
>
struct Take {
- typedef Cons<
+ typedef typename Cons<
Head<Current>,
typename Take<
Substract<Count, Size<1>>,
Tail<Current>
>::type
- > type;
+ >::type type;
};
template <typename Current>