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