| 1 | #ifndef BOOST_MP11_DETAIL_MP_LIST_V_HPP_INCLUDED |
| 2 | #define BOOST_MP11_DETAIL_MP_LIST_V_HPP_INCLUDED |
| 3 | |
| 4 | // Copyright 2023 Peter Dimov |
| 5 | // Distributed under the Boost Software License, Version 1.0. |
| 6 | // http://www.boost.org/LICENSE_1_0.txt |
| 7 | |
| 8 | #include <boost/mp11/detail/config.hpp> |
| 9 | |
| 10 | namespace boost |
| 11 | { |
| 12 | namespace mp11 |
| 13 | { |
| 14 | |
| 15 | #if defined(BOOST_MP11_HAS_TEMPLATE_AUTO) |
| 16 | |
| 17 | // mp_list_v<A...> |
| 18 | template<auto... A> struct mp_list_v |
| 19 | { |
| 20 | }; |
| 21 | |
| 22 | #endif |
| 23 | |
| 24 | } // namespace mp11 |
| 25 | } // namespace boost |
| 26 | |
| 27 | #endif // #ifndef BOOST_MP11_DETAIL_MP_LIST_V_HPP_INCLUDED |
| 28 | |