dmacro_fve.hpp 508 B

12345678910111213141516
  1. // (C) Copyright Edward Diener 2019
  2. // Use, modification and distribution are subject to the Boost Software License,
  3. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt).
  5. #if !defined(BOOST_TTI_DETAIL_MACRO_FVE_HPP)
  6. #define BOOST_TTI_DETAIL_MACRO_FVE_HPP
  7. #include <boost/preprocessor/variadic/elem.hpp>
  8. #define BOOST_TTI_DETAIL_FIRST_VARIADIC_ELEM(...) \
  9. BOOST_PP_VARIADIC_ELEM(0,__VA_ARGS__) \
  10. /**/
  11. #endif // BOOST_TTI_DETAIL_MACRO_FVE_HPP