We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c58d9a commit b86075eCopy full SHA for b86075e
py/parse.c
@@ -208,7 +208,7 @@ STATIC const char *const rule_name_table[] = {
208
#endif
209
210
typedef struct _rule_stack_t {
211
- size_t src_line : 8 * sizeof(size_t) - 8; // maximum bits storing source line number
+ size_t src_line : (8 * sizeof(size_t) - 8); // maximum bits storing source line number
212
size_t rule_id : 8; // this must be large enough to fit largest rule number
213
size_t arg_i; // this dictates the maximum nodes in a "list" of things
214
} rule_stack_t;
0 commit comments