adapt_is_tpl.hpp 655 B

12345678910111213141516
  1. /*=============================================================================
  2. Copyright (c) 2013-2014 Damien Buhl
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. ==============================================================================*/
  6. #ifndef BOOST_FUSION_ADAPTED_STRUCT_DETAIL_ADAPT_IS_TPL_HPP
  7. #define BOOST_FUSION_ADAPTED_STRUCT_DETAIL_ADAPT_IS_TPL_HPP
  8. #include <boost/preprocessor/seq/seq.hpp>
  9. #define BOOST_FUSION_ADAPT_IS_TPL(TEMPLATE_PARAMS_SEQ) \
  10. BOOST_PP_SEQ_HEAD(TEMPLATE_PARAMS_SEQ)
  11. #endif