1 #ifndef BOOST_MP11_MPL_LIST_HPP_INCLUDED
2 #define BOOST_MP11_MPL_LIST_HPP_INCLUDED
3 
4 // Copyright 2017, 2019 Peter Dimov.
5 //
6 // Distributed under the Boost Software License, Version 1.0.
7 //
8 // See accompanying file LICENSE_1_0.txt or copy at
9 // http://www.boost.org/LICENSE_1_0.txt
10 
11 #include <boost/mp11/detail/mpl_common.hpp>
12 
13 namespace boost
14 {
15 namespace mpl
16 {
17 
18 template< typename Sequence > struct sequence_tag;
19 
20 template<class... T> struct sequence_tag<mp11::mp_list<T...>>
21 {
22     using type = aux::mp11_tag;
23 };
24 
25 } // namespace mpl
26 } // namespace boost
27 
28 #endif // #ifndef BOOST_MP11_MPL_LIST_HPP_INCLUDED
29