We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1651b0 commit 2812c30Copy full SHA for 2812c30
1 file changed
include/express/type.h
@@ -159,7 +159,11 @@ struct TypeBody_ {
159
unsigned optional : 1;
160
unsigned fixed : 1;
161
unsigned shared : 1; /**< type is shared */
162
- unsigned repeat : 1; /**< expression is a repeat count*/
+ unsigned repeat : 1; /**< Expression is the number of repetitions of the previous Expression
163
+ * 10303-11:2004 production #203
164
+ * element = expression [ ':' repetition ] .
165
+ * TODO exp2cxx and exp2py do not use this! Are all use cases handled by libexppp?
166
+ */
167
unsigned encoded : 1; /**< encoded string */
168
} flags;
169
Type base; /**< underlying base type if any can also contain true type if this type is a type reference */
0 commit comments