williamr@4
|
1 |
# /* **************************************************************************
|
williamr@4
|
2 |
# * *
|
williamr@4
|
3 |
# * (C) Copyright Paul Mensonides 2002.
|
williamr@4
|
4 |
# * Distributed under the Boost Software License, Version 1.0. (See
|
williamr@4
|
5 |
# * accompanying file LICENSE_1_0.txt or copy at
|
williamr@4
|
6 |
# * http://www.boost.org/LICENSE_1_0.txt)
|
williamr@4
|
7 |
# * *
|
williamr@4
|
8 |
# ************************************************************************** */
|
williamr@4
|
9 |
#
|
williamr@4
|
10 |
# /* See http://www.boost.org for most recent version. */
|
williamr@4
|
11 |
#
|
williamr@4
|
12 |
# ifndef BOOST_PREPROCESSOR_SEQ_SIZE_HPP
|
williamr@4
|
13 |
# define BOOST_PREPROCESSOR_SEQ_SIZE_HPP
|
williamr@4
|
14 |
#
|
williamr@4
|
15 |
# include <boost/preprocessor/cat.hpp>
|
williamr@4
|
16 |
# include <boost/preprocessor/config/config.hpp>
|
williamr@4
|
17 |
# include <boost/preprocessor/tuple/eat.hpp>
|
williamr@4
|
18 |
#
|
williamr@4
|
19 |
# if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MWCC()
|
williamr@4
|
20 |
# define BOOST_PP_SEQ_SIZE(seq) BOOST_PP_SEQ_SIZE_I((seq))
|
williamr@4
|
21 |
# define BOOST_PP_SEQ_SIZE_I(par) BOOST_PP_SEQ_SIZE_II ## par
|
williamr@4
|
22 |
# define BOOST_PP_SEQ_SIZE_II(seq) BOOST_PP_CAT(BOOST_PP_SEQ_SIZE_, BOOST_PP_SEQ_SIZE_0 ## seq)
|
williamr@4
|
23 |
# elif BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() || BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
|
williamr@4
|
24 |
# define BOOST_PP_SEQ_SIZE(seq) BOOST_PP_SEQ_SIZE_I(seq)
|
williamr@4
|
25 |
# define BOOST_PP_SEQ_SIZE_I(seq) BOOST_PP_CAT(BOOST_PP_SEQ_SIZE_, BOOST_PP_SEQ_SIZE_0 seq)
|
williamr@4
|
26 |
# elif defined(__IBMC__) || defined(__IBMCPP__)
|
williamr@4
|
27 |
# define BOOST_PP_SEQ_SIZE(seq) BOOST_PP_CAT(BOOST_PP_SEQ_SIZE_, BOOST_PP_CAT(BOOST_PP_SEQ_SIZE_0, seq))
|
williamr@4
|
28 |
# else
|
williamr@4
|
29 |
# define BOOST_PP_SEQ_SIZE(seq) BOOST_PP_CAT(BOOST_PP_SEQ_SIZE_, BOOST_PP_SEQ_SIZE_0 seq)
|
williamr@4
|
30 |
# endif
|
williamr@4
|
31 |
#
|
williamr@4
|
32 |
# define BOOST_PP_SEQ_SIZE_0(_) BOOST_PP_SEQ_SIZE_1
|
williamr@4
|
33 |
# define BOOST_PP_SEQ_SIZE_1(_) BOOST_PP_SEQ_SIZE_2
|
williamr@4
|
34 |
# define BOOST_PP_SEQ_SIZE_2(_) BOOST_PP_SEQ_SIZE_3
|
williamr@4
|
35 |
# define BOOST_PP_SEQ_SIZE_3(_) BOOST_PP_SEQ_SIZE_4
|
williamr@4
|
36 |
# define BOOST_PP_SEQ_SIZE_4(_) BOOST_PP_SEQ_SIZE_5
|
williamr@4
|
37 |
# define BOOST_PP_SEQ_SIZE_5(_) BOOST_PP_SEQ_SIZE_6
|
williamr@4
|
38 |
# define BOOST_PP_SEQ_SIZE_6(_) BOOST_PP_SEQ_SIZE_7
|
williamr@4
|
39 |
# define BOOST_PP_SEQ_SIZE_7(_) BOOST_PP_SEQ_SIZE_8
|
williamr@4
|
40 |
# define BOOST_PP_SEQ_SIZE_8(_) BOOST_PP_SEQ_SIZE_9
|
williamr@4
|
41 |
# define BOOST_PP_SEQ_SIZE_9(_) BOOST_PP_SEQ_SIZE_10
|
williamr@4
|
42 |
# define BOOST_PP_SEQ_SIZE_10(_) BOOST_PP_SEQ_SIZE_11
|
williamr@4
|
43 |
# define BOOST_PP_SEQ_SIZE_11(_) BOOST_PP_SEQ_SIZE_12
|
williamr@4
|
44 |
# define BOOST_PP_SEQ_SIZE_12(_) BOOST_PP_SEQ_SIZE_13
|
williamr@4
|
45 |
# define BOOST_PP_SEQ_SIZE_13(_) BOOST_PP_SEQ_SIZE_14
|
williamr@4
|
46 |
# define BOOST_PP_SEQ_SIZE_14(_) BOOST_PP_SEQ_SIZE_15
|
williamr@4
|
47 |
# define BOOST_PP_SEQ_SIZE_15(_) BOOST_PP_SEQ_SIZE_16
|
williamr@4
|
48 |
# define BOOST_PP_SEQ_SIZE_16(_) BOOST_PP_SEQ_SIZE_17
|
williamr@4
|
49 |
# define BOOST_PP_SEQ_SIZE_17(_) BOOST_PP_SEQ_SIZE_18
|
williamr@4
|
50 |
# define BOOST_PP_SEQ_SIZE_18(_) BOOST_PP_SEQ_SIZE_19
|
williamr@4
|
51 |
# define BOOST_PP_SEQ_SIZE_19(_) BOOST_PP_SEQ_SIZE_20
|
williamr@4
|
52 |
# define BOOST_PP_SEQ_SIZE_20(_) BOOST_PP_SEQ_SIZE_21
|
williamr@4
|
53 |
# define BOOST_PP_SEQ_SIZE_21(_) BOOST_PP_SEQ_SIZE_22
|
williamr@4
|
54 |
# define BOOST_PP_SEQ_SIZE_22(_) BOOST_PP_SEQ_SIZE_23
|
williamr@4
|
55 |
# define BOOST_PP_SEQ_SIZE_23(_) BOOST_PP_SEQ_SIZE_24
|
williamr@4
|
56 |
# define BOOST_PP_SEQ_SIZE_24(_) BOOST_PP_SEQ_SIZE_25
|
williamr@4
|
57 |
# define BOOST_PP_SEQ_SIZE_25(_) BOOST_PP_SEQ_SIZE_26
|
williamr@4
|
58 |
# define BOOST_PP_SEQ_SIZE_26(_) BOOST_PP_SEQ_SIZE_27
|
williamr@4
|
59 |
# define BOOST_PP_SEQ_SIZE_27(_) BOOST_PP_SEQ_SIZE_28
|
williamr@4
|
60 |
# define BOOST_PP_SEQ_SIZE_28(_) BOOST_PP_SEQ_SIZE_29
|
williamr@4
|
61 |
# define BOOST_PP_SEQ_SIZE_29(_) BOOST_PP_SEQ_SIZE_30
|
williamr@4
|
62 |
# define BOOST_PP_SEQ_SIZE_30(_) BOOST_PP_SEQ_SIZE_31
|
williamr@4
|
63 |
# define BOOST_PP_SEQ_SIZE_31(_) BOOST_PP_SEQ_SIZE_32
|
williamr@4
|
64 |
# define BOOST_PP_SEQ_SIZE_32(_) BOOST_PP_SEQ_SIZE_33
|
williamr@4
|
65 |
# define BOOST_PP_SEQ_SIZE_33(_) BOOST_PP_SEQ_SIZE_34
|
williamr@4
|
66 |
# define BOOST_PP_SEQ_SIZE_34(_) BOOST_PP_SEQ_SIZE_35
|
williamr@4
|
67 |
# define BOOST_PP_SEQ_SIZE_35(_) BOOST_PP_SEQ_SIZE_36
|
williamr@4
|
68 |
# define BOOST_PP_SEQ_SIZE_36(_) BOOST_PP_SEQ_SIZE_37
|
williamr@4
|
69 |
# define BOOST_PP_SEQ_SIZE_37(_) BOOST_PP_SEQ_SIZE_38
|
williamr@4
|
70 |
# define BOOST_PP_SEQ_SIZE_38(_) BOOST_PP_SEQ_SIZE_39
|
williamr@4
|
71 |
# define BOOST_PP_SEQ_SIZE_39(_) BOOST_PP_SEQ_SIZE_40
|
williamr@4
|
72 |
# define BOOST_PP_SEQ_SIZE_40(_) BOOST_PP_SEQ_SIZE_41
|
williamr@4
|
73 |
# define BOOST_PP_SEQ_SIZE_41(_) BOOST_PP_SEQ_SIZE_42
|
williamr@4
|
74 |
# define BOOST_PP_SEQ_SIZE_42(_) BOOST_PP_SEQ_SIZE_43
|
williamr@4
|
75 |
# define BOOST_PP_SEQ_SIZE_43(_) BOOST_PP_SEQ_SIZE_44
|
williamr@4
|
76 |
# define BOOST_PP_SEQ_SIZE_44(_) BOOST_PP_SEQ_SIZE_45
|
williamr@4
|
77 |
# define BOOST_PP_SEQ_SIZE_45(_) BOOST_PP_SEQ_SIZE_46
|
williamr@4
|
78 |
# define BOOST_PP_SEQ_SIZE_46(_) BOOST_PP_SEQ_SIZE_47
|
williamr@4
|
79 |
# define BOOST_PP_SEQ_SIZE_47(_) BOOST_PP_SEQ_SIZE_48
|
williamr@4
|
80 |
# define BOOST_PP_SEQ_SIZE_48(_) BOOST_PP_SEQ_SIZE_49
|
williamr@4
|
81 |
# define BOOST_PP_SEQ_SIZE_49(_) BOOST_PP_SEQ_SIZE_50
|
williamr@4
|
82 |
# define BOOST_PP_SEQ_SIZE_50(_) BOOST_PP_SEQ_SIZE_51
|
williamr@4
|
83 |
# define BOOST_PP_SEQ_SIZE_51(_) BOOST_PP_SEQ_SIZE_52
|
williamr@4
|
84 |
# define BOOST_PP_SEQ_SIZE_52(_) BOOST_PP_SEQ_SIZE_53
|
williamr@4
|
85 |
# define BOOST_PP_SEQ_SIZE_53(_) BOOST_PP_SEQ_SIZE_54
|
williamr@4
|
86 |
# define BOOST_PP_SEQ_SIZE_54(_) BOOST_PP_SEQ_SIZE_55
|
williamr@4
|
87 |
# define BOOST_PP_SEQ_SIZE_55(_) BOOST_PP_SEQ_SIZE_56
|
williamr@4
|
88 |
# define BOOST_PP_SEQ_SIZE_56(_) BOOST_PP_SEQ_SIZE_57
|
williamr@4
|
89 |
# define BOOST_PP_SEQ_SIZE_57(_) BOOST_PP_SEQ_SIZE_58
|
williamr@4
|
90 |
# define BOOST_PP_SEQ_SIZE_58(_) BOOST_PP_SEQ_SIZE_59
|
williamr@4
|
91 |
# define BOOST_PP_SEQ_SIZE_59(_) BOOST_PP_SEQ_SIZE_60
|
williamr@4
|
92 |
# define BOOST_PP_SEQ_SIZE_60(_) BOOST_PP_SEQ_SIZE_61
|
williamr@4
|
93 |
# define BOOST_PP_SEQ_SIZE_61(_) BOOST_PP_SEQ_SIZE_62
|
williamr@4
|
94 |
# define BOOST_PP_SEQ_SIZE_62(_) BOOST_PP_SEQ_SIZE_63
|
williamr@4
|
95 |
# define BOOST_PP_SEQ_SIZE_63(_) BOOST_PP_SEQ_SIZE_64
|
williamr@4
|
96 |
# define BOOST_PP_SEQ_SIZE_64(_) BOOST_PP_SEQ_SIZE_65
|
williamr@4
|
97 |
# define BOOST_PP_SEQ_SIZE_65(_) BOOST_PP_SEQ_SIZE_66
|
williamr@4
|
98 |
# define BOOST_PP_SEQ_SIZE_66(_) BOOST_PP_SEQ_SIZE_67
|
williamr@4
|
99 |
# define BOOST_PP_SEQ_SIZE_67(_) BOOST_PP_SEQ_SIZE_68
|
williamr@4
|
100 |
# define BOOST_PP_SEQ_SIZE_68(_) BOOST_PP_SEQ_SIZE_69
|
williamr@4
|
101 |
# define BOOST_PP_SEQ_SIZE_69(_) BOOST_PP_SEQ_SIZE_70
|
williamr@4
|
102 |
# define BOOST_PP_SEQ_SIZE_70(_) BOOST_PP_SEQ_SIZE_71
|
williamr@4
|
103 |
# define BOOST_PP_SEQ_SIZE_71(_) BOOST_PP_SEQ_SIZE_72
|
williamr@4
|
104 |
# define BOOST_PP_SEQ_SIZE_72(_) BOOST_PP_SEQ_SIZE_73
|
williamr@4
|
105 |
# define BOOST_PP_SEQ_SIZE_73(_) BOOST_PP_SEQ_SIZE_74
|
williamr@4
|
106 |
# define BOOST_PP_SEQ_SIZE_74(_) BOOST_PP_SEQ_SIZE_75
|
williamr@4
|
107 |
# define BOOST_PP_SEQ_SIZE_75(_) BOOST_PP_SEQ_SIZE_76
|
williamr@4
|
108 |
# define BOOST_PP_SEQ_SIZE_76(_) BOOST_PP_SEQ_SIZE_77
|
williamr@4
|
109 |
# define BOOST_PP_SEQ_SIZE_77(_) BOOST_PP_SEQ_SIZE_78
|
williamr@4
|
110 |
# define BOOST_PP_SEQ_SIZE_78(_) BOOST_PP_SEQ_SIZE_79
|
williamr@4
|
111 |
# define BOOST_PP_SEQ_SIZE_79(_) BOOST_PP_SEQ_SIZE_80
|
williamr@4
|
112 |
# define BOOST_PP_SEQ_SIZE_80(_) BOOST_PP_SEQ_SIZE_81
|
williamr@4
|
113 |
# define BOOST_PP_SEQ_SIZE_81(_) BOOST_PP_SEQ_SIZE_82
|
williamr@4
|
114 |
# define BOOST_PP_SEQ_SIZE_82(_) BOOST_PP_SEQ_SIZE_83
|
williamr@4
|
115 |
# define BOOST_PP_SEQ_SIZE_83(_) BOOST_PP_SEQ_SIZE_84
|
williamr@4
|
116 |
# define BOOST_PP_SEQ_SIZE_84(_) BOOST_PP_SEQ_SIZE_85
|
williamr@4
|
117 |
# define BOOST_PP_SEQ_SIZE_85(_) BOOST_PP_SEQ_SIZE_86
|
williamr@4
|
118 |
# define BOOST_PP_SEQ_SIZE_86(_) BOOST_PP_SEQ_SIZE_87
|
williamr@4
|
119 |
# define BOOST_PP_SEQ_SIZE_87(_) BOOST_PP_SEQ_SIZE_88
|
williamr@4
|
120 |
# define BOOST_PP_SEQ_SIZE_88(_) BOOST_PP_SEQ_SIZE_89
|
williamr@4
|
121 |
# define BOOST_PP_SEQ_SIZE_89(_) BOOST_PP_SEQ_SIZE_90
|
williamr@4
|
122 |
# define BOOST_PP_SEQ_SIZE_90(_) BOOST_PP_SEQ_SIZE_91
|
williamr@4
|
123 |
# define BOOST_PP_SEQ_SIZE_91(_) BOOST_PP_SEQ_SIZE_92
|
williamr@4
|
124 |
# define BOOST_PP_SEQ_SIZE_92(_) BOOST_PP_SEQ_SIZE_93
|
williamr@4
|
125 |
# define BOOST_PP_SEQ_SIZE_93(_) BOOST_PP_SEQ_SIZE_94
|
williamr@4
|
126 |
# define BOOST_PP_SEQ_SIZE_94(_) BOOST_PP_SEQ_SIZE_95
|
williamr@4
|
127 |
# define BOOST_PP_SEQ_SIZE_95(_) BOOST_PP_SEQ_SIZE_96
|
williamr@4
|
128 |
# define BOOST_PP_SEQ_SIZE_96(_) BOOST_PP_SEQ_SIZE_97
|
williamr@4
|
129 |
# define BOOST_PP_SEQ_SIZE_97(_) BOOST_PP_SEQ_SIZE_98
|
williamr@4
|
130 |
# define BOOST_PP_SEQ_SIZE_98(_) BOOST_PP_SEQ_SIZE_99
|
williamr@4
|
131 |
# define BOOST_PP_SEQ_SIZE_99(_) BOOST_PP_SEQ_SIZE_100
|
williamr@4
|
132 |
# define BOOST_PP_SEQ_SIZE_100(_) BOOST_PP_SEQ_SIZE_101
|
williamr@4
|
133 |
# define BOOST_PP_SEQ_SIZE_101(_) BOOST_PP_SEQ_SIZE_102
|
williamr@4
|
134 |
# define BOOST_PP_SEQ_SIZE_102(_) BOOST_PP_SEQ_SIZE_103
|
williamr@4
|
135 |
# define BOOST_PP_SEQ_SIZE_103(_) BOOST_PP_SEQ_SIZE_104
|
williamr@4
|
136 |
# define BOOST_PP_SEQ_SIZE_104(_) BOOST_PP_SEQ_SIZE_105
|
williamr@4
|
137 |
# define BOOST_PP_SEQ_SIZE_105(_) BOOST_PP_SEQ_SIZE_106
|
williamr@4
|
138 |
# define BOOST_PP_SEQ_SIZE_106(_) BOOST_PP_SEQ_SIZE_107
|
williamr@4
|
139 |
# define BOOST_PP_SEQ_SIZE_107(_) BOOST_PP_SEQ_SIZE_108
|
williamr@4
|
140 |
# define BOOST_PP_SEQ_SIZE_108(_) BOOST_PP_SEQ_SIZE_109
|
williamr@4
|
141 |
# define BOOST_PP_SEQ_SIZE_109(_) BOOST_PP_SEQ_SIZE_110
|
williamr@4
|
142 |
# define BOOST_PP_SEQ_SIZE_110(_) BOOST_PP_SEQ_SIZE_111
|
williamr@4
|
143 |
# define BOOST_PP_SEQ_SIZE_111(_) BOOST_PP_SEQ_SIZE_112
|
williamr@4
|
144 |
# define BOOST_PP_SEQ_SIZE_112(_) BOOST_PP_SEQ_SIZE_113
|
williamr@4
|
145 |
# define BOOST_PP_SEQ_SIZE_113(_) BOOST_PP_SEQ_SIZE_114
|
williamr@4
|
146 |
# define BOOST_PP_SEQ_SIZE_114(_) BOOST_PP_SEQ_SIZE_115
|
williamr@4
|
147 |
# define BOOST_PP_SEQ_SIZE_115(_) BOOST_PP_SEQ_SIZE_116
|
williamr@4
|
148 |
# define BOOST_PP_SEQ_SIZE_116(_) BOOST_PP_SEQ_SIZE_117
|
williamr@4
|
149 |
# define BOOST_PP_SEQ_SIZE_117(_) BOOST_PP_SEQ_SIZE_118
|
williamr@4
|
150 |
# define BOOST_PP_SEQ_SIZE_118(_) BOOST_PP_SEQ_SIZE_119
|
williamr@4
|
151 |
# define BOOST_PP_SEQ_SIZE_119(_) BOOST_PP_SEQ_SIZE_120
|
williamr@4
|
152 |
# define BOOST_PP_SEQ_SIZE_120(_) BOOST_PP_SEQ_SIZE_121
|
williamr@4
|
153 |
# define BOOST_PP_SEQ_SIZE_121(_) BOOST_PP_SEQ_SIZE_122
|
williamr@4
|
154 |
# define BOOST_PP_SEQ_SIZE_122(_) BOOST_PP_SEQ_SIZE_123
|
williamr@4
|
155 |
# define BOOST_PP_SEQ_SIZE_123(_) BOOST_PP_SEQ_SIZE_124
|
williamr@4
|
156 |
# define BOOST_PP_SEQ_SIZE_124(_) BOOST_PP_SEQ_SIZE_125
|
williamr@4
|
157 |
# define BOOST_PP_SEQ_SIZE_125(_) BOOST_PP_SEQ_SIZE_126
|
williamr@4
|
158 |
# define BOOST_PP_SEQ_SIZE_126(_) BOOST_PP_SEQ_SIZE_127
|
williamr@4
|
159 |
# define BOOST_PP_SEQ_SIZE_127(_) BOOST_PP_SEQ_SIZE_128
|
williamr@4
|
160 |
# define BOOST_PP_SEQ_SIZE_128(_) BOOST_PP_SEQ_SIZE_129
|
williamr@4
|
161 |
# define BOOST_PP_SEQ_SIZE_129(_) BOOST_PP_SEQ_SIZE_130
|
williamr@4
|
162 |
# define BOOST_PP_SEQ_SIZE_130(_) BOOST_PP_SEQ_SIZE_131
|
williamr@4
|
163 |
# define BOOST_PP_SEQ_SIZE_131(_) BOOST_PP_SEQ_SIZE_132
|
williamr@4
|
164 |
# define BOOST_PP_SEQ_SIZE_132(_) BOOST_PP_SEQ_SIZE_133
|
williamr@4
|
165 |
# define BOOST_PP_SEQ_SIZE_133(_) BOOST_PP_SEQ_SIZE_134
|
williamr@4
|
166 |
# define BOOST_PP_SEQ_SIZE_134(_) BOOST_PP_SEQ_SIZE_135
|
williamr@4
|
167 |
# define BOOST_PP_SEQ_SIZE_135(_) BOOST_PP_SEQ_SIZE_136
|
williamr@4
|
168 |
# define BOOST_PP_SEQ_SIZE_136(_) BOOST_PP_SEQ_SIZE_137
|
williamr@4
|
169 |
# define BOOST_PP_SEQ_SIZE_137(_) BOOST_PP_SEQ_SIZE_138
|
williamr@4
|
170 |
# define BOOST_PP_SEQ_SIZE_138(_) BOOST_PP_SEQ_SIZE_139
|
williamr@4
|
171 |
# define BOOST_PP_SEQ_SIZE_139(_) BOOST_PP_SEQ_SIZE_140
|
williamr@4
|
172 |
# define BOOST_PP_SEQ_SIZE_140(_) BOOST_PP_SEQ_SIZE_141
|
williamr@4
|
173 |
# define BOOST_PP_SEQ_SIZE_141(_) BOOST_PP_SEQ_SIZE_142
|
williamr@4
|
174 |
# define BOOST_PP_SEQ_SIZE_142(_) BOOST_PP_SEQ_SIZE_143
|
williamr@4
|
175 |
# define BOOST_PP_SEQ_SIZE_143(_) BOOST_PP_SEQ_SIZE_144
|
williamr@4
|
176 |
# define BOOST_PP_SEQ_SIZE_144(_) BOOST_PP_SEQ_SIZE_145
|
williamr@4
|
177 |
# define BOOST_PP_SEQ_SIZE_145(_) BOOST_PP_SEQ_SIZE_146
|
williamr@4
|
178 |
# define BOOST_PP_SEQ_SIZE_146(_) BOOST_PP_SEQ_SIZE_147
|
williamr@4
|
179 |
# define BOOST_PP_SEQ_SIZE_147(_) BOOST_PP_SEQ_SIZE_148
|
williamr@4
|
180 |
# define BOOST_PP_SEQ_SIZE_148(_) BOOST_PP_SEQ_SIZE_149
|
williamr@4
|
181 |
# define BOOST_PP_SEQ_SIZE_149(_) BOOST_PP_SEQ_SIZE_150
|
williamr@4
|
182 |
# define BOOST_PP_SEQ_SIZE_150(_) BOOST_PP_SEQ_SIZE_151
|
williamr@4
|
183 |
# define BOOST_PP_SEQ_SIZE_151(_) BOOST_PP_SEQ_SIZE_152
|
williamr@4
|
184 |
# define BOOST_PP_SEQ_SIZE_152(_) BOOST_PP_SEQ_SIZE_153
|
williamr@4
|
185 |
# define BOOST_PP_SEQ_SIZE_153(_) BOOST_PP_SEQ_SIZE_154
|
williamr@4
|
186 |
# define BOOST_PP_SEQ_SIZE_154(_) BOOST_PP_SEQ_SIZE_155
|
williamr@4
|
187 |
# define BOOST_PP_SEQ_SIZE_155(_) BOOST_PP_SEQ_SIZE_156
|
williamr@4
|
188 |
# define BOOST_PP_SEQ_SIZE_156(_) BOOST_PP_SEQ_SIZE_157
|
williamr@4
|
189 |
# define BOOST_PP_SEQ_SIZE_157(_) BOOST_PP_SEQ_SIZE_158
|
williamr@4
|
190 |
# define BOOST_PP_SEQ_SIZE_158(_) BOOST_PP_SEQ_SIZE_159
|
williamr@4
|
191 |
# define BOOST_PP_SEQ_SIZE_159(_) BOOST_PP_SEQ_SIZE_160
|
williamr@4
|
192 |
# define BOOST_PP_SEQ_SIZE_160(_) BOOST_PP_SEQ_SIZE_161
|
williamr@4
|
193 |
# define BOOST_PP_SEQ_SIZE_161(_) BOOST_PP_SEQ_SIZE_162
|
williamr@4
|
194 |
# define BOOST_PP_SEQ_SIZE_162(_) BOOST_PP_SEQ_SIZE_163
|
williamr@4
|
195 |
# define BOOST_PP_SEQ_SIZE_163(_) BOOST_PP_SEQ_SIZE_164
|
williamr@4
|
196 |
# define BOOST_PP_SEQ_SIZE_164(_) BOOST_PP_SEQ_SIZE_165
|
williamr@4
|
197 |
# define BOOST_PP_SEQ_SIZE_165(_) BOOST_PP_SEQ_SIZE_166
|
williamr@4
|
198 |
# define BOOST_PP_SEQ_SIZE_166(_) BOOST_PP_SEQ_SIZE_167
|
williamr@4
|
199 |
# define BOOST_PP_SEQ_SIZE_167(_) BOOST_PP_SEQ_SIZE_168
|
williamr@4
|
200 |
# define BOOST_PP_SEQ_SIZE_168(_) BOOST_PP_SEQ_SIZE_169
|
williamr@4
|
201 |
# define BOOST_PP_SEQ_SIZE_169(_) BOOST_PP_SEQ_SIZE_170
|
williamr@4
|
202 |
# define BOOST_PP_SEQ_SIZE_170(_) BOOST_PP_SEQ_SIZE_171
|
williamr@4
|
203 |
# define BOOST_PP_SEQ_SIZE_171(_) BOOST_PP_SEQ_SIZE_172
|
williamr@4
|
204 |
# define BOOST_PP_SEQ_SIZE_172(_) BOOST_PP_SEQ_SIZE_173
|
williamr@4
|
205 |
# define BOOST_PP_SEQ_SIZE_173(_) BOOST_PP_SEQ_SIZE_174
|
williamr@4
|
206 |
# define BOOST_PP_SEQ_SIZE_174(_) BOOST_PP_SEQ_SIZE_175
|
williamr@4
|
207 |
# define BOOST_PP_SEQ_SIZE_175(_) BOOST_PP_SEQ_SIZE_176
|
williamr@4
|
208 |
# define BOOST_PP_SEQ_SIZE_176(_) BOOST_PP_SEQ_SIZE_177
|
williamr@4
|
209 |
# define BOOST_PP_SEQ_SIZE_177(_) BOOST_PP_SEQ_SIZE_178
|
williamr@4
|
210 |
# define BOOST_PP_SEQ_SIZE_178(_) BOOST_PP_SEQ_SIZE_179
|
williamr@4
|
211 |
# define BOOST_PP_SEQ_SIZE_179(_) BOOST_PP_SEQ_SIZE_180
|
williamr@4
|
212 |
# define BOOST_PP_SEQ_SIZE_180(_) BOOST_PP_SEQ_SIZE_181
|
williamr@4
|
213 |
# define BOOST_PP_SEQ_SIZE_181(_) BOOST_PP_SEQ_SIZE_182
|
williamr@4
|
214 |
# define BOOST_PP_SEQ_SIZE_182(_) BOOST_PP_SEQ_SIZE_183
|
williamr@4
|
215 |
# define BOOST_PP_SEQ_SIZE_183(_) BOOST_PP_SEQ_SIZE_184
|
williamr@4
|
216 |
# define BOOST_PP_SEQ_SIZE_184(_) BOOST_PP_SEQ_SIZE_185
|
williamr@4
|
217 |
# define BOOST_PP_SEQ_SIZE_185(_) BOOST_PP_SEQ_SIZE_186
|
williamr@4
|
218 |
# define BOOST_PP_SEQ_SIZE_186(_) BOOST_PP_SEQ_SIZE_187
|
williamr@4
|
219 |
# define BOOST_PP_SEQ_SIZE_187(_) BOOST_PP_SEQ_SIZE_188
|
williamr@4
|
220 |
# define BOOST_PP_SEQ_SIZE_188(_) BOOST_PP_SEQ_SIZE_189
|
williamr@4
|
221 |
# define BOOST_PP_SEQ_SIZE_189(_) BOOST_PP_SEQ_SIZE_190
|
williamr@4
|
222 |
# define BOOST_PP_SEQ_SIZE_190(_) BOOST_PP_SEQ_SIZE_191
|
williamr@4
|
223 |
# define BOOST_PP_SEQ_SIZE_191(_) BOOST_PP_SEQ_SIZE_192
|
williamr@4
|
224 |
# define BOOST_PP_SEQ_SIZE_192(_) BOOST_PP_SEQ_SIZE_193
|
williamr@4
|
225 |
# define BOOST_PP_SEQ_SIZE_193(_) BOOST_PP_SEQ_SIZE_194
|
williamr@4
|
226 |
# define BOOST_PP_SEQ_SIZE_194(_) BOOST_PP_SEQ_SIZE_195
|
williamr@4
|
227 |
# define BOOST_PP_SEQ_SIZE_195(_) BOOST_PP_SEQ_SIZE_196
|
williamr@4
|
228 |
# define BOOST_PP_SEQ_SIZE_196(_) BOOST_PP_SEQ_SIZE_197
|
williamr@4
|
229 |
# define BOOST_PP_SEQ_SIZE_197(_) BOOST_PP_SEQ_SIZE_198
|
williamr@4
|
230 |
# define BOOST_PP_SEQ_SIZE_198(_) BOOST_PP_SEQ_SIZE_199
|
williamr@4
|
231 |
# define BOOST_PP_SEQ_SIZE_199(_) BOOST_PP_SEQ_SIZE_200
|
williamr@4
|
232 |
# define BOOST_PP_SEQ_SIZE_200(_) BOOST_PP_SEQ_SIZE_201
|
williamr@4
|
233 |
# define BOOST_PP_SEQ_SIZE_201(_) BOOST_PP_SEQ_SIZE_202
|
williamr@4
|
234 |
# define BOOST_PP_SEQ_SIZE_202(_) BOOST_PP_SEQ_SIZE_203
|
williamr@4
|
235 |
# define BOOST_PP_SEQ_SIZE_203(_) BOOST_PP_SEQ_SIZE_204
|
williamr@4
|
236 |
# define BOOST_PP_SEQ_SIZE_204(_) BOOST_PP_SEQ_SIZE_205
|
williamr@4
|
237 |
# define BOOST_PP_SEQ_SIZE_205(_) BOOST_PP_SEQ_SIZE_206
|
williamr@4
|
238 |
# define BOOST_PP_SEQ_SIZE_206(_) BOOST_PP_SEQ_SIZE_207
|
williamr@4
|
239 |
# define BOOST_PP_SEQ_SIZE_207(_) BOOST_PP_SEQ_SIZE_208
|
williamr@4
|
240 |
# define BOOST_PP_SEQ_SIZE_208(_) BOOST_PP_SEQ_SIZE_209
|
williamr@4
|
241 |
# define BOOST_PP_SEQ_SIZE_209(_) BOOST_PP_SEQ_SIZE_210
|
williamr@4
|
242 |
# define BOOST_PP_SEQ_SIZE_210(_) BOOST_PP_SEQ_SIZE_211
|
williamr@4
|
243 |
# define BOOST_PP_SEQ_SIZE_211(_) BOOST_PP_SEQ_SIZE_212
|
williamr@4
|
244 |
# define BOOST_PP_SEQ_SIZE_212(_) BOOST_PP_SEQ_SIZE_213
|
williamr@4
|
245 |
# define BOOST_PP_SEQ_SIZE_213(_) BOOST_PP_SEQ_SIZE_214
|
williamr@4
|
246 |
# define BOOST_PP_SEQ_SIZE_214(_) BOOST_PP_SEQ_SIZE_215
|
williamr@4
|
247 |
# define BOOST_PP_SEQ_SIZE_215(_) BOOST_PP_SEQ_SIZE_216
|
williamr@4
|
248 |
# define BOOST_PP_SEQ_SIZE_216(_) BOOST_PP_SEQ_SIZE_217
|
williamr@4
|
249 |
# define BOOST_PP_SEQ_SIZE_217(_) BOOST_PP_SEQ_SIZE_218
|
williamr@4
|
250 |
# define BOOST_PP_SEQ_SIZE_218(_) BOOST_PP_SEQ_SIZE_219
|
williamr@4
|
251 |
# define BOOST_PP_SEQ_SIZE_219(_) BOOST_PP_SEQ_SIZE_220
|
williamr@4
|
252 |
# define BOOST_PP_SEQ_SIZE_220(_) BOOST_PP_SEQ_SIZE_221
|
williamr@4
|
253 |
# define BOOST_PP_SEQ_SIZE_221(_) BOOST_PP_SEQ_SIZE_222
|
williamr@4
|
254 |
# define BOOST_PP_SEQ_SIZE_222(_) BOOST_PP_SEQ_SIZE_223
|
williamr@4
|
255 |
# define BOOST_PP_SEQ_SIZE_223(_) BOOST_PP_SEQ_SIZE_224
|
williamr@4
|
256 |
# define BOOST_PP_SEQ_SIZE_224(_) BOOST_PP_SEQ_SIZE_225
|
williamr@4
|
257 |
# define BOOST_PP_SEQ_SIZE_225(_) BOOST_PP_SEQ_SIZE_226
|
williamr@4
|
258 |
# define BOOST_PP_SEQ_SIZE_226(_) BOOST_PP_SEQ_SIZE_227
|
williamr@4
|
259 |
# define BOOST_PP_SEQ_SIZE_227(_) BOOST_PP_SEQ_SIZE_228
|
williamr@4
|
260 |
# define BOOST_PP_SEQ_SIZE_228(_) BOOST_PP_SEQ_SIZE_229
|
williamr@4
|
261 |
# define BOOST_PP_SEQ_SIZE_229(_) BOOST_PP_SEQ_SIZE_230
|
williamr@4
|
262 |
# define BOOST_PP_SEQ_SIZE_230(_) BOOST_PP_SEQ_SIZE_231
|
williamr@4
|
263 |
# define BOOST_PP_SEQ_SIZE_231(_) BOOST_PP_SEQ_SIZE_232
|
williamr@4
|
264 |
# define BOOST_PP_SEQ_SIZE_232(_) BOOST_PP_SEQ_SIZE_233
|
williamr@4
|
265 |
# define BOOST_PP_SEQ_SIZE_233(_) BOOST_PP_SEQ_SIZE_234
|
williamr@4
|
266 |
# define BOOST_PP_SEQ_SIZE_234(_) BOOST_PP_SEQ_SIZE_235
|
williamr@4
|
267 |
# define BOOST_PP_SEQ_SIZE_235(_) BOOST_PP_SEQ_SIZE_236
|
williamr@4
|
268 |
# define BOOST_PP_SEQ_SIZE_236(_) BOOST_PP_SEQ_SIZE_237
|
williamr@4
|
269 |
# define BOOST_PP_SEQ_SIZE_237(_) BOOST_PP_SEQ_SIZE_238
|
williamr@4
|
270 |
# define BOOST_PP_SEQ_SIZE_238(_) BOOST_PP_SEQ_SIZE_239
|
williamr@4
|
271 |
# define BOOST_PP_SEQ_SIZE_239(_) BOOST_PP_SEQ_SIZE_240
|
williamr@4
|
272 |
# define BOOST_PP_SEQ_SIZE_240(_) BOOST_PP_SEQ_SIZE_241
|
williamr@4
|
273 |
# define BOOST_PP_SEQ_SIZE_241(_) BOOST_PP_SEQ_SIZE_242
|
williamr@4
|
274 |
# define BOOST_PP_SEQ_SIZE_242(_) BOOST_PP_SEQ_SIZE_243
|
williamr@4
|
275 |
# define BOOST_PP_SEQ_SIZE_243(_) BOOST_PP_SEQ_SIZE_244
|
williamr@4
|
276 |
# define BOOST_PP_SEQ_SIZE_244(_) BOOST_PP_SEQ_SIZE_245
|
williamr@4
|
277 |
# define BOOST_PP_SEQ_SIZE_245(_) BOOST_PP_SEQ_SIZE_246
|
williamr@4
|
278 |
# define BOOST_PP_SEQ_SIZE_246(_) BOOST_PP_SEQ_SIZE_247
|
williamr@4
|
279 |
# define BOOST_PP_SEQ_SIZE_247(_) BOOST_PP_SEQ_SIZE_248
|
williamr@4
|
280 |
# define BOOST_PP_SEQ_SIZE_248(_) BOOST_PP_SEQ_SIZE_249
|
williamr@4
|
281 |
# define BOOST_PP_SEQ_SIZE_249(_) BOOST_PP_SEQ_SIZE_250
|
williamr@4
|
282 |
# define BOOST_PP_SEQ_SIZE_250(_) BOOST_PP_SEQ_SIZE_251
|
williamr@4
|
283 |
# define BOOST_PP_SEQ_SIZE_251(_) BOOST_PP_SEQ_SIZE_252
|
williamr@4
|
284 |
# define BOOST_PP_SEQ_SIZE_252(_) BOOST_PP_SEQ_SIZE_253
|
williamr@4
|
285 |
# define BOOST_PP_SEQ_SIZE_253(_) BOOST_PP_SEQ_SIZE_254
|
williamr@4
|
286 |
# define BOOST_PP_SEQ_SIZE_254(_) BOOST_PP_SEQ_SIZE_255
|
williamr@4
|
287 |
# define BOOST_PP_SEQ_SIZE_255(_) BOOST_PP_SEQ_SIZE_256
|
williamr@4
|
288 |
# define BOOST_PP_SEQ_SIZE_256(_) BOOST_PP_SEQ_SIZE_257
|
williamr@4
|
289 |
#
|
williamr@4
|
290 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_0 0
|
williamr@4
|
291 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_1 1
|
williamr@4
|
292 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_2 2
|
williamr@4
|
293 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_3 3
|
williamr@4
|
294 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_4 4
|
williamr@4
|
295 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_5 5
|
williamr@4
|
296 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_6 6
|
williamr@4
|
297 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_7 7
|
williamr@4
|
298 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_8 8
|
williamr@4
|
299 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_9 9
|
williamr@4
|
300 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_10 10
|
williamr@4
|
301 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_11 11
|
williamr@4
|
302 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_12 12
|
williamr@4
|
303 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_13 13
|
williamr@4
|
304 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_14 14
|
williamr@4
|
305 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_15 15
|
williamr@4
|
306 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_16 16
|
williamr@4
|
307 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_17 17
|
williamr@4
|
308 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_18 18
|
williamr@4
|
309 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_19 19
|
williamr@4
|
310 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_20 20
|
williamr@4
|
311 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_21 21
|
williamr@4
|
312 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_22 22
|
williamr@4
|
313 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_23 23
|
williamr@4
|
314 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_24 24
|
williamr@4
|
315 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_25 25
|
williamr@4
|
316 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_26 26
|
williamr@4
|
317 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_27 27
|
williamr@4
|
318 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_28 28
|
williamr@4
|
319 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_29 29
|
williamr@4
|
320 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_30 30
|
williamr@4
|
321 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_31 31
|
williamr@4
|
322 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_32 32
|
williamr@4
|
323 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_33 33
|
williamr@4
|
324 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_34 34
|
williamr@4
|
325 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_35 35
|
williamr@4
|
326 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_36 36
|
williamr@4
|
327 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_37 37
|
williamr@4
|
328 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_38 38
|
williamr@4
|
329 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_39 39
|
williamr@4
|
330 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_40 40
|
williamr@4
|
331 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_41 41
|
williamr@4
|
332 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_42 42
|
williamr@4
|
333 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_43 43
|
williamr@4
|
334 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_44 44
|
williamr@4
|
335 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_45 45
|
williamr@4
|
336 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_46 46
|
williamr@4
|
337 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_47 47
|
williamr@4
|
338 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_48 48
|
williamr@4
|
339 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_49 49
|
williamr@4
|
340 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_50 50
|
williamr@4
|
341 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_51 51
|
williamr@4
|
342 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_52 52
|
williamr@4
|
343 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_53 53
|
williamr@4
|
344 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_54 54
|
williamr@4
|
345 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_55 55
|
williamr@4
|
346 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_56 56
|
williamr@4
|
347 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_57 57
|
williamr@4
|
348 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_58 58
|
williamr@4
|
349 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_59 59
|
williamr@4
|
350 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_60 60
|
williamr@4
|
351 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_61 61
|
williamr@4
|
352 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_62 62
|
williamr@4
|
353 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_63 63
|
williamr@4
|
354 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_64 64
|
williamr@4
|
355 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_65 65
|
williamr@4
|
356 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_66 66
|
williamr@4
|
357 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_67 67
|
williamr@4
|
358 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_68 68
|
williamr@4
|
359 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_69 69
|
williamr@4
|
360 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_70 70
|
williamr@4
|
361 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_71 71
|
williamr@4
|
362 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_72 72
|
williamr@4
|
363 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_73 73
|
williamr@4
|
364 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_74 74
|
williamr@4
|
365 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_75 75
|
williamr@4
|
366 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_76 76
|
williamr@4
|
367 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_77 77
|
williamr@4
|
368 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_78 78
|
williamr@4
|
369 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_79 79
|
williamr@4
|
370 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_80 80
|
williamr@4
|
371 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_81 81
|
williamr@4
|
372 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_82 82
|
williamr@4
|
373 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_83 83
|
williamr@4
|
374 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_84 84
|
williamr@4
|
375 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_85 85
|
williamr@4
|
376 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_86 86
|
williamr@4
|
377 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_87 87
|
williamr@4
|
378 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_88 88
|
williamr@4
|
379 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_89 89
|
williamr@4
|
380 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_90 90
|
williamr@4
|
381 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_91 91
|
williamr@4
|
382 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_92 92
|
williamr@4
|
383 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_93 93
|
williamr@4
|
384 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_94 94
|
williamr@4
|
385 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_95 95
|
williamr@4
|
386 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_96 96
|
williamr@4
|
387 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_97 97
|
williamr@4
|
388 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_98 98
|
williamr@4
|
389 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_99 99
|
williamr@4
|
390 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_100 100
|
williamr@4
|
391 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_101 101
|
williamr@4
|
392 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_102 102
|
williamr@4
|
393 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_103 103
|
williamr@4
|
394 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_104 104
|
williamr@4
|
395 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_105 105
|
williamr@4
|
396 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_106 106
|
williamr@4
|
397 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_107 107
|
williamr@4
|
398 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_108 108
|
williamr@4
|
399 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_109 109
|
williamr@4
|
400 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_110 110
|
williamr@4
|
401 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_111 111
|
williamr@4
|
402 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_112 112
|
williamr@4
|
403 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_113 113
|
williamr@4
|
404 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_114 114
|
williamr@4
|
405 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_115 115
|
williamr@4
|
406 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_116 116
|
williamr@4
|
407 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_117 117
|
williamr@4
|
408 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_118 118
|
williamr@4
|
409 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_119 119
|
williamr@4
|
410 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_120 120
|
williamr@4
|
411 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_121 121
|
williamr@4
|
412 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_122 122
|
williamr@4
|
413 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_123 123
|
williamr@4
|
414 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_124 124
|
williamr@4
|
415 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_125 125
|
williamr@4
|
416 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_126 126
|
williamr@4
|
417 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_127 127
|
williamr@4
|
418 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_128 128
|
williamr@4
|
419 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_129 129
|
williamr@4
|
420 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_130 130
|
williamr@4
|
421 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_131 131
|
williamr@4
|
422 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_132 132
|
williamr@4
|
423 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_133 133
|
williamr@4
|
424 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_134 134
|
williamr@4
|
425 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_135 135
|
williamr@4
|
426 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_136 136
|
williamr@4
|
427 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_137 137
|
williamr@4
|
428 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_138 138
|
williamr@4
|
429 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_139 139
|
williamr@4
|
430 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_140 140
|
williamr@4
|
431 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_141 141
|
williamr@4
|
432 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_142 142
|
williamr@4
|
433 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_143 143
|
williamr@4
|
434 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_144 144
|
williamr@4
|
435 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_145 145
|
williamr@4
|
436 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_146 146
|
williamr@4
|
437 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_147 147
|
williamr@4
|
438 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_148 148
|
williamr@4
|
439 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_149 149
|
williamr@4
|
440 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_150 150
|
williamr@4
|
441 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_151 151
|
williamr@4
|
442 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_152 152
|
williamr@4
|
443 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_153 153
|
williamr@4
|
444 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_154 154
|
williamr@4
|
445 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_155 155
|
williamr@4
|
446 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_156 156
|
williamr@4
|
447 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_157 157
|
williamr@4
|
448 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_158 158
|
williamr@4
|
449 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_159 159
|
williamr@4
|
450 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_160 160
|
williamr@4
|
451 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_161 161
|
williamr@4
|
452 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_162 162
|
williamr@4
|
453 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_163 163
|
williamr@4
|
454 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_164 164
|
williamr@4
|
455 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_165 165
|
williamr@4
|
456 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_166 166
|
williamr@4
|
457 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_167 167
|
williamr@4
|
458 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_168 168
|
williamr@4
|
459 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_169 169
|
williamr@4
|
460 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_170 170
|
williamr@4
|
461 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_171 171
|
williamr@4
|
462 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_172 172
|
williamr@4
|
463 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_173 173
|
williamr@4
|
464 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_174 174
|
williamr@4
|
465 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_175 175
|
williamr@4
|
466 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_176 176
|
williamr@4
|
467 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_177 177
|
williamr@4
|
468 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_178 178
|
williamr@4
|
469 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_179 179
|
williamr@4
|
470 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_180 180
|
williamr@4
|
471 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_181 181
|
williamr@4
|
472 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_182 182
|
williamr@4
|
473 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_183 183
|
williamr@4
|
474 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_184 184
|
williamr@4
|
475 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_185 185
|
williamr@4
|
476 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_186 186
|
williamr@4
|
477 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_187 187
|
williamr@4
|
478 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_188 188
|
williamr@4
|
479 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_189 189
|
williamr@4
|
480 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_190 190
|
williamr@4
|
481 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_191 191
|
williamr@4
|
482 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_192 192
|
williamr@4
|
483 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_193 193
|
williamr@4
|
484 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_194 194
|
williamr@4
|
485 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_195 195
|
williamr@4
|
486 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_196 196
|
williamr@4
|
487 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_197 197
|
williamr@4
|
488 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_198 198
|
williamr@4
|
489 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_199 199
|
williamr@4
|
490 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_200 200
|
williamr@4
|
491 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_201 201
|
williamr@4
|
492 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_202 202
|
williamr@4
|
493 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_203 203
|
williamr@4
|
494 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_204 204
|
williamr@4
|
495 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_205 205
|
williamr@4
|
496 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_206 206
|
williamr@4
|
497 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_207 207
|
williamr@4
|
498 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_208 208
|
williamr@4
|
499 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_209 209
|
williamr@4
|
500 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_210 210
|
williamr@4
|
501 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_211 211
|
williamr@4
|
502 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_212 212
|
williamr@4
|
503 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_213 213
|
williamr@4
|
504 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_214 214
|
williamr@4
|
505 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_215 215
|
williamr@4
|
506 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_216 216
|
williamr@4
|
507 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_217 217
|
williamr@4
|
508 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_218 218
|
williamr@4
|
509 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_219 219
|
williamr@4
|
510 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_220 220
|
williamr@4
|
511 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_221 221
|
williamr@4
|
512 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_222 222
|
williamr@4
|
513 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_223 223
|
williamr@4
|
514 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_224 224
|
williamr@4
|
515 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_225 225
|
williamr@4
|
516 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_226 226
|
williamr@4
|
517 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_227 227
|
williamr@4
|
518 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_228 228
|
williamr@4
|
519 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_229 229
|
williamr@4
|
520 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_230 230
|
williamr@4
|
521 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_231 231
|
williamr@4
|
522 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_232 232
|
williamr@4
|
523 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_233 233
|
williamr@4
|
524 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_234 234
|
williamr@4
|
525 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_235 235
|
williamr@4
|
526 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_236 236
|
williamr@4
|
527 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_237 237
|
williamr@4
|
528 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_238 238
|
williamr@4
|
529 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_239 239
|
williamr@4
|
530 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_240 240
|
williamr@4
|
531 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_241 241
|
williamr@4
|
532 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_242 242
|
williamr@4
|
533 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_243 243
|
williamr@4
|
534 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_244 244
|
williamr@4
|
535 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_245 245
|
williamr@4
|
536 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_246 246
|
williamr@4
|
537 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_247 247
|
williamr@4
|
538 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_248 248
|
williamr@4
|
539 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_249 249
|
williamr@4
|
540 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_250 250
|
williamr@4
|
541 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_251 251
|
williamr@4
|
542 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_252 252
|
williamr@4
|
543 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_253 253
|
williamr@4
|
544 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_254 254
|
williamr@4
|
545 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_255 255
|
williamr@4
|
546 |
# define BOOST_PP_SEQ_SIZE_BOOST_PP_SEQ_SIZE_256 256
|
williamr@4
|
547 |
#
|
williamr@4
|
548 |
# endif
|