aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/higher/partition.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/higher/partition.h')
-rw-r--r--src/list/operation/higher/partition.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/list/operation/higher/partition.h b/src/list/operation/higher/partition.h
index aed0ea6..eedeb91 100644
--- a/src/list/operation/higher/partition.h
+++ b/src/list/operation/higher/partition.h
@@ -10,8 +10,8 @@ template <
typename Elements
>
using Partition = Cons<
- typename Filter<Predicate, Elements>::type,
- typename Remove<Predicate, Elements>::type
+ Eval<Filter<Predicate, Elements>>,
+ Eval<Remove<Predicate, Elements>>
>;
}