summaryrefslogtreecommitdiffhomepage
path: root/compat/meta.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compat/meta.hpp')
-rw-r--r--compat/meta.hpp13
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