aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/append.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/append.h')
-rw-r--r--src/list/operation/append.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/list/operation/append.h b/src/list/operation/append.h
index 9e1be79..6cf15f0 100644
--- a/src/list/operation/append.h
+++ b/src/list/operation/append.h
@@ -8,13 +8,13 @@ template <
typename Secondary
>
struct Append {
- typedef Cons<
+ typedef typename Cons<
Head<Primary>,
typename Append<
Tail<Primary>,
Secondary
>::type
- > type;
+ >::type type;
};
template <typename Secondary>