]> git.sesse.net Git - casparcg/blob - dependencies/boost/boost/fusion/container/deque/detail/deque_forward_ctor.hpp
Manually merged pull request #222
[casparcg] / dependencies / boost / boost / fusion / container / deque / detail / deque_forward_ctor.hpp
1 /*=============================================================================
2     Copyright (c) 2005-2011 Joel de Guzman
3     Copyright (c) 2005-2006 Dan Marsden
4
5     Distributed under the Boost Software License, Version 1.0. (See accompanying 
6     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 ==============================================================================*/
8 #if !defined(BOOST_PP_IS_ITERATING)
9 #if !defined(BOOST_FUSION_SEQUENCE_DEQUE_DETAIL_DEQUE_FORWARD_CTOR_04122006_2212)
10 #define BOOST_FUSION_SEQUENCE_DEQUE_DETAIL_DEQUE_FORWARD_CTOR_04122006_2212
11
12 #include <boost/preprocessor/iterate.hpp>
13 #include <boost/preprocessor/repetition/enum_shifted_params.hpp>
14 #include <boost/preprocessor/repetition/enum_binary_params.hpp>
15
16 #define BOOST_PP_FILENAME_1 \
17     <boost/fusion/container/deque/detail/deque_forward_ctor.hpp>
18 #define BOOST_PP_ITERATION_LIMITS (2, FUSION_MAX_DEQUE_SIZE)
19 #include BOOST_PP_ITERATE()
20
21 #endif
22 #else
23
24 #define N BOOST_PP_ITERATION()
25
26 deque(BOOST_PP_ENUM_BINARY_PARAMS(N, typename add_reference<typename add_const<T, >::type>::type t))
27     : base(detail::deque_keyed_values<BOOST_PP_ENUM_PARAMS(N, T)>::call(BOOST_PP_ENUM_PARAMS(N, t)))
28 {}
29
30 #undef N
31 #endif