1234567891011121314151617181920212223242526272829 |
- #ifndef BOOST_MP11_MPL_TUPLE_HPP_INCLUDED
- #define BOOST_MP11_MPL_TUPLE_HPP_INCLUDED
- #include <boost/mp11/detail/mpl_common.hpp>
- #include <tuple>
- namespace boost
- {
- namespace mpl
- {
- template< typename Sequence > struct sequence_tag;
- template<class... T> struct sequence_tag<std::tuple<T...>>
- {
- using type = aux::mp11_tag;
- };
- }
- }
- #endif
|