aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/higher/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/higher/map.h')
-rw-r--r--src/list/operation/higher/map.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/list/operation/higher/map.h b/src/list/operation/higher/map.h
index a451b2a..9cb6524 100644
--- a/src/list/operation/higher/map.h
+++ b/src/list/operation/higher/map.h
@@ -15,12 +15,10 @@ class Map {
typename Current,
typename Previous
>
- struct function_wrapper {
- typedef Cons<
- typename Function<Current>::type,
- Previous
- > type;
- };
+ using function_wrapper = Cons<
+ typename Function<Current>::type,
+ Previous
+ >;
public:
typedef typename Fold<function_wrapper, void, List>::type type;