]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/metaparse/include/boost/metaparse/v1/sequence.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / metaparse / include / boost / metaparse / v1 / sequence.hpp
CommitLineData
7c673cae
FG
1#ifndef BOOST_METAPARSE_V1_SEQUENCE_HPP
2#define BOOST_METAPARSE_V1_SEQUENCE_HPP
3
4// Copyright Abel Sinkovics (abel@sinkovics.hu) 2009 - 2010.
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8
9#include <boost/metaparse/v1/impl/sequence.hpp>
10
11#include <boost/preprocessor/comma_if.hpp>
12#include <boost/preprocessor/repetition/repeat_from_to.hpp>
13#include <boost/preprocessor/repetition/enum.hpp>
14#include <boost/preprocessor/repetition/enum_params.hpp>
15#include <boost/preprocessor/repetition/enum_params_with_a_default.hpp>
16#include <boost/preprocessor/arithmetic/sub.hpp>
17#include <boost/preprocessor/cat.hpp>
18#include <boost/preprocessor/tuple/eat.hpp>
19
20namespace boost
21{
22 namespace metaparse
23 {
24 namespace v1
25 {
26 template <
27 BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(
28 BOOST_METAPARSE_LIMIT_SEQUENCE_SIZE,
29 class P,
30 boost::mpl::na
31 )
32 >
33 struct sequence;
34
35 #ifdef BOOST_METAPARSE_SEQUENCE_N
36 # error BOOST_METAPARSE_SEQUENCE_N already defined
37 #endif
38 #define BOOST_METAPARSE_SEQUENCE_N(z, n, unused) \
39 template <BOOST_PP_ENUM_PARAMS(n, class P)> \
40 struct sequence< \
41 BOOST_PP_ENUM_PARAMS(n, P) \
42 BOOST_PP_COMMA_IF(n) \
43 BOOST_PP_ENUM( \
44 BOOST_PP_SUB(BOOST_METAPARSE_LIMIT_SEQUENCE_SIZE, n), \
45 boost::mpl::na BOOST_PP_TUPLE_EAT(3), \
46 ~ \
47 ) \
48 > : impl::BOOST_PP_CAT(sequence, n)<BOOST_PP_ENUM_PARAMS(n, P)> \
49 {};
50
51 BOOST_PP_REPEAT_FROM_TO(
52 1,
53 BOOST_METAPARSE_LIMIT_SEQUENCE_SIZE,
54 BOOST_METAPARSE_SEQUENCE_N,
55 ~
56 )
57
58 #undef BOOST_METAPARSE_SEQUENCE_N
59 }
60 }
61}
62
63#endif
64