py/parse: Add parenthesis around calculated bit-width in struct.
To improve interaction with uncrustify formatter.
This commit is contained in:
parent
3c58d9a1a5
commit
b86075ef1f
|
@ -208,7 +208,7 @@ STATIC const char *const rule_name_table[] = {
|
|||
#endif
|
||||
|
||||
typedef struct _rule_stack_t {
|
||||
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
|
||||
size_t rule_id : 8; // this must be large enough to fit largest rule number
|
||||
size_t arg_i; // this dictates the maximum nodes in a "list" of things
|
||||
} rule_stack_t;
|
||||
|
|
Loading…
Reference in New Issue