123456789101112131415161718192021222324252627 |
- #ifndef BOOST_DESCRIBE_DETAIL_LIST_HPP_INCLUDED
- #define BOOST_DESCRIBE_DETAIL_LIST_HPP_INCLUDED
- // Copyright 2020 Peter Dimov
- // Distributed under the Boost Software License, Version 1.0.
- // https://www.boost.org/LICENSE_1_0.txt
- #include <boost/describe/detail/config.hpp>
- #if defined(BOOST_DESCRIBE_CXX11)
- namespace boost
- {
- namespace describe
- {
- namespace detail
- {
- template<class... T> struct list {};
- } // namespace detail
- } // namespace describe
- } // namespace boost
- #endif // defined(BOOST_DESCRIBE_CXX11)
- #endif // #ifndef BOOST_DESCRIBE_DETAIL_LIST_HPP_INCLUDED
|