mirror of
https://git.suyu.dev/suyu/ext-boost.git
synced 2025-12-24 00:04:41 +01:00
externals: Update boost-ext to include logic and mp11.
- Needed for safe_numerics.
This commit is contained in:
parent
caf8e19fb1
commit
5e8300b76a
32 changed files with 4934 additions and 0 deletions
28
boost/mp11/mpl_list.hpp
Normal file
28
boost/mp11/mpl_list.hpp
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#ifndef BOOST_MP11_MPL_LIST_HPP_INCLUDED
|
||||
#define BOOST_MP11_MPL_LIST_HPP_INCLUDED
|
||||
|
||||
// Copyright 2017, 2019 Peter Dimov.
|
||||
//
|
||||
// Distributed under the Boost Software License, Version 1.0.
|
||||
//
|
||||
// See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
#include <boost/mp11/detail/mpl_common.hpp>
|
||||
|
||||
namespace boost
|
||||
{
|
||||
namespace mpl
|
||||
{
|
||||
|
||||
template< typename Sequence > struct sequence_tag;
|
||||
|
||||
template<class... T> struct sequence_tag<mp11::mp_list<T...>>
|
||||
{
|
||||
using type = aux::mp11_tag;
|
||||
};
|
||||
|
||||
} // namespace mpl
|
||||
} // namespace boost
|
||||
|
||||
#endif // #ifndef BOOST_MP11_MPL_LIST_HPP_INCLUDED
|
||||
Loading…
Add table
Add a link
Reference in a new issue