diff options
-rw-r--r-- | compat/meta.hpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/compat/meta.hpp b/compat/meta.hpp index 51e9f238..c33777f4 100644 --- a/compat/meta.hpp +++ b/compat/meta.hpp @@ -51,19 +51,6 @@ namespace detail { { using type = inst<xs...>; }; - - template<typename N, N max, N pos, typename... xs> - struct index_sequence_ - { - using part = std::integral_constant<N, pos>; - using type = typename index_sequence_<N, max, pos+1, xs..., part>::type; - }; - - template<typename N, N max, typename... xs> - struct index_sequence_<N, max, max, xs...> - { - using type = std::tuple<xs...>; - }; } // ns detail |