1 
2 //  (C) Copyright Edward Diener 2011-2015
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_VMD_DETAIL_VARIADIC_POP_FRONT_HPP)
8 #define BOOST_VMD_DETAIL_VARIADIC_POP_FRONT_HPP
9 
10 #include <boost/preprocessor/tuple/enum.hpp>
11 #include <boost/preprocessor/tuple/pop_front.hpp>
12 #include <boost/preprocessor/variadic/to_tuple.hpp>
13 
14 #define BOOST_VMD_DETAIL_VARIADIC_POP_FRONT(...) \
15     BOOST_PP_TUPLE_ENUM \
16         ( \
17         BOOST_PP_TUPLE_POP_FRONT \
18             ( \
19             BOOST_PP_VARIADIC_TO_TUPLE(__VA_ARGS__) \
20             ) \
21         ) \
22 /**/
23 
24 #endif /* BOOST_VMD_DETAIL_VARIADIC_POP_FRONT_HPP */
25