123456789101112131415161718192021222324252627 |
- #ifndef BOOST_MP11_DETAIL_MP_LIST_V_HPP_INCLUDED
- #define BOOST_MP11_DETAIL_MP_LIST_V_HPP_INCLUDED
- #include <boost/mp11/detail/config.hpp>
- namespace boost
- {
- namespace mp11
- {
- #if defined(BOOST_MP11_HAS_TEMPLATE_AUTO)
- template<auto... A> struct mp_list_v
- {
- };
- #endif
- }
- }
- #endif
|