28 lines
523 B
C++
28 lines
523 B
C++
#ifndef BOOST_MP11_DETAIL_MP_LIST_V_HPP_INCLUDED
|
|
#define BOOST_MP11_DETAIL_MP_LIST_V_HPP_INCLUDED
|
|
|
|
// Copyright 2023 Peter Dimov
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
#include <boost/mp11/detail/config.hpp>
|
|
|
|
namespace boost
|
|
{
|
|
namespace mp11
|
|
{
|
|
|
|
#if defined(BOOST_MP11_HAS_TEMPLATE_AUTO)
|
|
|
|
// mp_list_v<A...>
|
|
template<auto... A> struct mp_list_v
|
|
{
|
|
};
|
|
|
|
#endif
|
|
|
|
} // namespace mp11
|
|
} // namespace boost
|
|
|
|
#endif // #ifndef BOOST_MP11_DETAIL_MP_LIST_V_HPP_INCLUDED
|