diff options
| author | mikhnenko <[email protected]> | 2023-12-15 19:01:31 +0300 |
|---|---|---|
| committer | mikhnenko <[email protected]> | 2023-12-15 23:42:15 +0300 |
| commit | 0d259c4e4b9c15299d4b7aa3e875bff771c1eecb (patch) | |
| tree | b837d24d62cf0751d194559536d1919887ff8cb2 /contrib/libs/cxxsupp/libcxx/include/__utility/integer_sequence.h | |
| parent | 575896e786912fe28f56c16df6edd2f14dcdafb5 (diff) | |
Remove more old patches
Diffstat (limited to 'contrib/libs/cxxsupp/libcxx/include/__utility/integer_sequence.h')
| -rw-r--r-- | contrib/libs/cxxsupp/libcxx/include/__utility/integer_sequence.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/__utility/integer_sequence.h b/contrib/libs/cxxsupp/libcxx/include/__utility/integer_sequence.h index 00a944dd027..633f1333e24 100644 --- a/contrib/libs/cxxsupp/libcxx/include/__utility/integer_sequence.h +++ b/contrib/libs/cxxsupp/libcxx/include/__utility/integer_sequence.h @@ -43,17 +43,8 @@ using __make_integer_sequence _LIBCPP_NODEBUG = __make_integer_seq<integer_seque #else -template <class _Tp, class _T> struct __integer_sequence_convert { - using type = integer_sequence<_Tp>; -}; - -template<class _Tp, class _Tp2, _Tp... _Values> -struct __integer_sequence_convert<_Tp, __integer_sequence<_Tp2, _Values...>> { - using type = integer_sequence<_Tp, _Values...>; -}; - template<typename _Tp, _Tp _Np> using __make_integer_sequence_unchecked _LIBCPP_NODEBUG = - typename __integer_sequence_convert<_Tp, typename __detail::__make<_Np>::type>::type; + typename __detail::__make<_Np>::type::template __convert<integer_sequence, _Tp>; template <class _Tp, _Tp _Ep> struct __make_integer_sequence_checked |
