aboutsummaryrefslogtreecommitdiff
path: root/src/list/generator/iota.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/generator/iota.h')
-rw-r--r--src/list/generator/iota.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/list/generator/iota.h b/src/list/generator/iota.h
index 54f0f40..2d5b506 100644
--- a/src/list/generator/iota.h
+++ b/src/list/generator/iota.h
@@ -11,14 +11,14 @@ template <
typename Step
>
struct Iota {
- typedef Cons<
+ typedef typename Cons<
Initial,
typename Iota<
Substract<Count, Size<1>>,
Add<Initial, Step>,
Step
>::type
- > type;
+ >::type type;
};
template <
@@ -26,7 +26,7 @@ template <
typename Step
>
struct Iota<Size<1>, Initial, Step> {
- typedef Cons<Initial, void> type;
+ typedef typename Cons<Initial, void>::type type;
};
}