py/parse: Add parenthesis around calculated bit-width in struct.

To improve interaction with uncrustify formatter.
pull/5700/head
Damien George 2020-02-27 15:35:22 +11:00
rodzic 3c58d9a1a5
commit b86075ef1f
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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;