Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:46:52

0001 #ifndef BOOST_MP11_MPL_LIST_HPP_INCLUDED
0002 #define BOOST_MP11_MPL_LIST_HPP_INCLUDED
0003 
0004 // Copyright 2017, 2019 Peter Dimov.
0005 //
0006 // Distributed under the Boost Software License, Version 1.0.
0007 //
0008 // See accompanying file LICENSE_1_0.txt or copy at
0009 // http://www.boost.org/LICENSE_1_0.txt
0010 
0011 #include <boost/mp11/detail/mpl_common.hpp>
0012 
0013 namespace boost
0014 {
0015 namespace mpl
0016 {
0017 
0018 template< typename Sequence > struct sequence_tag;
0019 
0020 template<class... T> struct sequence_tag<mp11::mp_list<T...>>
0021 {
0022     using type = aux::mp11_tag;
0023 };
0024 
0025 } // namespace mpl
0026 } // namespace boost
0027 
0028 #endif // #ifndef BOOST_MP11_MPL_LIST_HPP_INCLUDED