From ddd998cb5315d81a3b9c5c730bec0d2504757aea Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sat, 2 Nov 2019 13:55:55 +0100 Subject: [PATCH] type_list_sort_impl cleanup --- src/include/units/bits/type_list.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/include/units/bits/type_list.h b/src/include/units/bits/type_list.h index 3d3c13b9..a4b51d6e 100644 --- a/src/include/units/bits/type_list.h +++ b/src/include/units/bits/type_list.h @@ -172,9 +172,9 @@ namespace units { struct type_list_sort_impl, Pred> { using types = List; using split = type_list_split_half>; - using left = type_list_sort_impl::type; - using right = type_list_sort_impl::type; - using type = type_list_merge_sorted_impl::type; + using sorted_left = type_list_sort_impl::type; + using sorted_right = type_list_sort_impl::type; + using type = type_list_merge_sorted_impl::type; }; }