/* Copyright Barrett Adair 2016-2017 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_CLBL_TRTS_DETAIL_POLYFILLS_MAKE_INDEX_SEQUENCE_HPP #define BOOST_CLBL_TRTS_DETAIL_POLYFILLS_MAKE_INDEX_SEQUENCE_HPP #undef BOOST_CLBL_TRTS_IX_SEQ #define BOOST_CLBL_TRTS_IX_SEQ(...) \ ::boost::callable_traits::detail::index_sequence<__VA_ARGS__> #undef BOOST_CLBL_TRTS_MAKE_IX_SEQ #define BOOST_CLBL_TRTS_MAKE_IX_SEQ(...) \ ::boost::callable_traits::detail::make_index_sequence<__VA_ARGS__> namespace boost { namespace callable_traits { namespace detail { template struct index_sequence { using type = index_sequence; }; template struct concat; template struct concat, index_sequence> : index_sequence {}; template struct make_index_sequence_t; template struct make_index_sequence_t : concat< typename make_index_sequence_t::type, typename make_index_sequence_t::type >::type {}; template<> struct make_index_sequence_t<0> : index_sequence<> {}; template<> struct make_index_sequence_t<1> : index_sequence<0> {}; template using make_index_sequence = typename make_index_sequence_t::type; }}} // namespace boost::callable_traits::detail #endif // #ifndef BOOST_CLBL_TRTS_DETAIL_POLYFILLS_MAKE_INDEX_SEQUENCE_HPP