HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
preprocessorUtils.h
Go to the documentation of this file.
1 //
2 // Copyright 2016 Pixar
3 //
4 // Licensed under the Apache License, Version 2.0 (the "Apache License")
5 // with the following modification; you may not use this file except in
6 // compliance with the Apache License and the following modification to it:
7 // Section 6. Trademarks. is deleted and replaced with:
8 //
9 // 6. Trademarks. This License does not grant permission to use the trade
10 // names, trademarks, service marks, or product names of the Licensor
11 // and its affiliates, except as required to comply with Section 4(c) of
12 // the License and to reproduce the content of the NOTICE file.
13 //
14 // You may obtain a copy of the Apache License at
15 //
16 // http://www.apache.org/licenses/LICENSE-2.0
17 //
18 // Unless required by applicable law or agreed to in writing, software
19 // distributed under the Apache License with the above modification is
20 // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21 // KIND, either express or implied. See the Apache License for the specific
22 // language governing permissions and limitations under the Apache License.
23 //
24 #ifndef PXR_BASE_TF_PREPROCESSOR_UTILS_H
25 #define PXR_BASE_TF_PREPROCESSOR_UTILS_H
26 
27 /// \file tf/preprocessorUtils.h
28 /// \ingroup group_tf_Preprocessor
29 
30 #ifndef TF_MAX_ARITY
31 # define TF_MAX_ARITY 7
32 #endif // TF_MAX_ARITY
33 
34 #include "pxr/base/arch/defines.h"
35 #include "pxr/base/arch/pragmas.h"
36 #include <hboost/preprocessor/arithmetic/inc.hpp>
37 #include <hboost/preprocessor/arithmetic/sub.hpp>
38 #include <hboost/preprocessor/cat.hpp>
39 #include <hboost/preprocessor/control/expr_iif.hpp>
40 #include <hboost/preprocessor/comparison/equal.hpp>
41 #include <hboost/preprocessor/facilities/expand.hpp>
42 #include <hboost/preprocessor/punctuation/comma.hpp>
43 #include <hboost/preprocessor/punctuation/paren.hpp>
44 #include <hboost/preprocessor/repetition/repeat.hpp>
45 #include <hboost/preprocessor/tuple/to_list.hpp>
46 #include <hboost/preprocessor/tuple/to_seq.hpp>
47 #if defined(ARCH_COMPILER_MSVC)
48 #include <hboost/preprocessor/variadic/size.hpp>
49 #include <hboost/vmd/is_empty.hpp>
51 #endif
52 
53 // In hboost version 1.51, they seem to have neglected to define this.
54 // Without it, some functions will get confused about macros with no arguments
55 #ifndef HBOOST_PP_TUPLE_TO_SEQ_0
56 #define HBOOST_PP_TUPLE_TO_SEQ_0()
57 #endif
58 
59 /// Count the number of arguments.
60 ///
61 /// The underlying macro argument counting trick in the non-Windows
62 /// implementation originates from a posting on comp.std.c by Laurent Deniau.
63 ///
64 /// \ingroup group_tf_Preprocessor
65 /// \hideinitializer
66 #if defined(ARCH_COMPILER_MSVC)
67 #define TF_NUM_ARGS(...) \
68  HBOOST_PP_IIF(HBOOST_VMD_IS_EMPTY(__VA_ARGS__),\
69  0, HBOOST_PP_VARIADIC_SIZE(__VA_ARGS__))
70 #else
71 #define TF_NUM_ARGS(...) \
72  _TF_NUM_ARGS_CHECK(__VA_ARGS__) \
73  HBOOST_PP_IIF(HBOOST_PP_EQUAL(1, _TF_NUM_ARGS1(__VA_ARGS__)), \
74  HBOOST_PP_EXPAND(TF_ARG_2 HBOOST_PP_LPAREN() \
75  HBOOST_PP_EXPAND(_TF_NUM_ARGS_0X TF_ARG_1(__VA_ARGS__) \
76  (HBOOST_PP_REPEAT(TF_MAX_ARITY, _TF_NUM_ARGS_REP, _TF))) \
77  HBOOST_PP_COMMA() 1 HBOOST_PP_RPAREN()), \
78  _TF_NUM_ARGS1(__VA_ARGS__))
79 
80 #define _TF_NUM_ARGS_CHECK(...) \
81  HBOOST_PP_IIF(_TF_EXPAND(TF_ARG_2 HBOOST_PP_LPAREN() \
82  HBOOST_PP_CAT(_TF_NUM_ARGS_00, _TF_EXPAND( \
83  HBOOST_PP_CAT(TF_ARG_, HBOOST_PP_INC(TF_MAX_ARITY)) \
84  _TF_NUM_ARGS_TF(__VA_ARGS__))) HBOOST_PP_COMMA() 1 HBOOST_PP_RPAREN()), \
85  _TF_MAX_ARITY_OVERFLOW_IN_TF_NUM_ARGS, HBOOST_PP_TUPLE_EAT(1))(...)
86 
87 #define _TF_NUM_ARGS_00_TF 0, 0
88 #define _TF_MAX_ARITY_OVERFLOW_IN_TF_NUM_ARGS(a, b, c)
89 
90 #define _TF_NUM_ARGS_0X(a, ...) \
91  _TF_NUM_ARGS_CHECK(a, __VA_ARGS__) 0, \
92  HBOOST_PP_IIF(HBOOST_PP_EQUAL(TF_MAX_ARITY, _TF_NUM_ARGS1(__VA_ARGS__)), \
93  0, 1 HBOOST_PP_TUPLE_EAT(HBOOST_PP_INC(TF_MAX_ARITY)))
94 
95 #define _TF_EXPAND(x) x // We need this due to a bug in the preprocessor.
96 #define _TF_NUM_ARGS1(...) \
97  _TF_EXPAND(HBOOST_PP_CAT(TF_ARG_, HBOOST_PP_INC(TF_MAX_ARITY)) \
98  _TF_NUM_ARGS_EXT(__VA_ARGS__))
99 
100 #define _TF_NUM_ARGS_DEC(z, i, n) HBOOST_PP_COMMA() HBOOST_PP_SUB(n, i)
101 #define _TF_NUM_ARGS_REP(z, i, n) HBOOST_PP_COMMA() n
102 
103 #define _TF_NUM_ARGS_EXT(...) \
104  (__VA_ARGS__ HBOOST_PP_REPEAT(HBOOST_PP_INC(TF_MAX_ARITY), \
105  _TF_NUM_ARGS_DEC, TF_MAX_ARITY))
106 #define _TF_NUM_ARGS_TF(...) \
107  (__VA_ARGS__ HBOOST_PP_REPEAT(HBOOST_PP_INC(TF_MAX_ARITY), \
108  _TF_NUM_ARGS_REP, _TF))
109 #endif
110 
111 /// Count the number of elements in a preprocessor tuple.
112 /// \ingroup group_tf_Preprocessor
113 /// \hideinitializer
114 #define TF_PP_TUPLE_SIZE(tuple) \
115  HBOOST_PP_EXPAND(TF_NUM_ARGS tuple)
116 
117 /// Convert a preprocessor tuple to a preprocessor list.
118 /// \ingroup group_tf_Preprocessor
119 /// \hideinitializer
120 #define TF_PP_TUPLE_TO_LIST(tuple) \
121  HBOOST_PP_IIF( \
122  HBOOST_PP_EQUAL(TF_PP_TUPLE_SIZE(tuple), 0), \
123  HBOOST_PP_LIST_NIL, \
124  HBOOST_PP_TUPLE_TO_LIST(TF_PP_TUPLE_SIZE(tuple), tuple))
125 
126 /// Convert a preprocessor tuple to a preprocessor sequence.
127 /// \ingroup group_tf_Preprocessor
128 /// \hideinitializer
129 #define TF_PP_TUPLE_TO_SEQ(tuple) \
130  HBOOST_PP_IIF( \
131  HBOOST_PP_EQUAL(TF_PP_TUPLE_SIZE(tuple), 0), \
132  HBOOST_PP_EMPTY(), \
133  HBOOST_PP_TUPLE_TO_SEQ(TF_PP_TUPLE_SIZE(tuple), tuple))
134 
135 /// Create a preprocessor array.
136 /// \ingroup group_tf_Preprocessor
137 /// \hideinitializer
138 #define TF_MAKE_PP_ARRAY(...) \
139  (TF_NUM_ARGS(__VA_ARGS__), (__VA_ARGS__))
140 
141 /// Create a preprocessor list.
142 /// \ingroup group_tf_Preprocessor
143 /// \hideinitializer
144 #define TF_MAKE_PP_LIST(...) \
145  TF_PP_TUPLE_TO_LIST((__VA_ARGS__))
146 
147 /// Create a preprocessor sequence.
148 /// \ingroup group_tf_Preprocessor
149 /// \hideinitializer
150 #define TF_MAKE_PP_SEQ(...) \
151  TF_PP_TUPLE_TO_SEQ((__VA_ARGS__))
152 
153 /// Macros that expand to a specific argument.
154 /// \ingroup group_tf_Preprocessor
155 /// \hideinitializer
156 #define TF_ARG_1(_1,...) _1
157 #define TF_ARG_2(_1,_2,...) _2
158 #define TF_ARG_3(_1,_2,_3,...) _3
159 #define TF_ARG_4(_1,_2,_3,_4,...) _4
160 #define TF_ARG_5(_1,_2,_3,_4,_5,...) _5
161 #define TF_ARG_6(_1,_2,_3,_4,_5,_6,...) _6
162 #define TF_ARG_7(_1,_2,_3,_4,_5,_6,_7,...) _7
163 #define TF_ARG_8(_1,_2,_3,_4,_5,_6,_7,_8,...) _8
164 #define TF_ARG_9(_1,_2,_3,_4,_5,_6,_7,_8,_9,...) _9
165 #define TF_ARG_10(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,...) _10
166 #define TF_ARG_11(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,...) _11
167 #define TF_ARG_12(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,...) _12
168 #define TF_ARG_13(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,...) _13
169 #define TF_ARG_14(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,...) _14
170 #define TF_ARG_15(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,...) _15
171 #define TF_ARG_16(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,...) _16
172 #define TF_ARG_17(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,...) _17
173 #define TF_ARG_18(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,...) _18
174 #define TF_ARG_19(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,...) _19
175 #define TF_ARG_20(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,...) _20
176 #define TF_ARG_21(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,...) _21
177 #define TF_ARG_22(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,...) _22
178 #define TF_ARG_23(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,...) _23
179 #define TF_ARG_24(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,...) _24
180 #define TF_ARG_25(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,...) _25
181 #define TF_ARG_26(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,...) _26
182 #define TF_ARG_27(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,...) _27
183 #define TF_ARG_28(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,...) _28
184 #define TF_ARG_29(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,...) _29
185 #define TF_ARG_30(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,...) _30
186 #define TF_ARG_31(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,...) _31
187 #define TF_ARG_32(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,...) _32
188 #define TF_ARG_33(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,...) _33
189 #define TF_ARG_34(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,...) _34
190 #define TF_ARG_35(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,...) _35
191 #define TF_ARG_36(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,...) _36
192 #define TF_ARG_37(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,...) _37
193 #define TF_ARG_38(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,...) _38
194 #define TF_ARG_39(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,...) _39
195 #define TF_ARG_40(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,...) _40
196 #define TF_ARG_41(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,...) _41
197 #define TF_ARG_42(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,...) _42
198 #define TF_ARG_43(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,...) _43
199 #define TF_ARG_44(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,...) _44
200 #define TF_ARG_45(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,...) _45
201 #define TF_ARG_46(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,...) _46
202 #define TF_ARG_47(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,...) _47
203 #define TF_ARG_48(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,...) _48
204 #define TF_ARG_49(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,...) _49
205 #define TF_ARG_50(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,...) _50
206 #define TF_ARG_51(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,...) _51
207 #define TF_ARG_52(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,...) _52
208 #define TF_ARG_53(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,...) _53
209 #define TF_ARG_54(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,...) _54
210 #define TF_ARG_55(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,...) _55
211 #define TF_ARG_56(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,...) _56
212 #define TF_ARG_57(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,...) _57
213 #define TF_ARG_58(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,...) _58
214 #define TF_ARG_59(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,...) _59
215 #define TF_ARG_60(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,...) _60
216 #define TF_ARG_61(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,...) _61
217 #define TF_ARG_62(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,...) _62
218 #define TF_ARG_63(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,...) _63
219 #define TF_ARG_64(_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,...) _64
220 
221 #if TF_MAX_ARITY > 64
222 #error "TF_MAX_ARITY is larger than _MAX_ARGS"
223 #endif
224 
225 #endif /* PXR_BASE_TF_PREPROCESSOR_UTILS_H */
#define ARCH_PRAGMA_MACRO_TOO_FEW_ARGUMENTS
Definition: pragmas.h:206