mp_list_v.hpp 523 B

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