aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/delete.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/delete.h')
-rw-r--r--src/list/operation/delete.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/list/operation/delete.h b/src/list/operation/delete.h
index 48f1137..5ac620a 100644
--- a/src/list/operation/delete.h
+++ b/src/list/operation/delete.h
@@ -9,11 +9,11 @@ namespace tav {
template <
typename Element,
- typename List
+ typename Sequence
>
using Delete = Remove<
Apply<IsEqualValue, _0, Element>::template function,
- List
+ Sequence
>;
}