aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/delete_nth.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/delete_nth.h')
-rw-r--r--src/list/operation/delete_nth.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/list/operation/delete_nth.h b/src/list/operation/delete_nth.h
index 18e52bf..a834150 100644
--- a/src/list/operation/delete_nth.h
+++ b/src/list/operation/delete_nth.h
@@ -9,11 +9,11 @@ namespace tav {
template <
typename Index,
- typename List
+ typename Sequence
>
using DeleteNth = Append<
- Take<Index, List>,
- Drop<Add<Index, Size<1>>, List>
+ Take<Index, Sequence>,
+ Drop<Add<Index, Size<1>>, Sequence>
>;
}