File indexing completed on 2025-01-18 09:40:56
0001 #ifndef BOOST_MP11_MPL_TUPLE_HPP_INCLUDED
0002 #define BOOST_MP11_MPL_TUPLE_HPP_INCLUDED
0003
0004
0005
0006
0007
0008
0009
0010
0011 #include <boost/mp11/detail/mpl_common.hpp>
0012 #include <tuple>
0013
0014 namespace boost
0015 {
0016 namespace mpl
0017 {
0018
0019 template< typename Sequence > struct sequence_tag;
0020
0021 template<class... T> struct sequence_tag<std::tuple<T...>>
0022 {
0023 using type = aux::mp11_tag;
0024 };
0025
0026 }
0027 }
0028
0029 #endif