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.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/list/generator/iota.h b/src/list/generator/iota.h
index 2d5b506..56ebeca 100644
--- a/src/list/generator/iota.h
+++ b/src/list/generator/iota.h
@@ -11,14 +11,14 @@ template <
typename Step
>
struct Iota {
- typedef typename Cons<
+ typedef Eval<Cons<
Initial,
- typename Iota<
+ Eval<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 typename Cons<Initial, void>::type type;
+ typedef Eval<Cons<Initial, void>> type;
};
}