mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-27 20:25:12 +00:00
Reduce child_count in node structure to 8 bits
This commit is contained in:
parent
7b86b2e05a
commit
e763345f25
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ public:
|
||||||
|
|
||||||
/* Children */
|
/* Children */
|
||||||
node_offset_t child_start;
|
node_offset_t child_start;
|
||||||
node_offset_t child_count;
|
uint8_t child_count;
|
||||||
|
|
||||||
/* Which production was used */
|
/* Which production was used */
|
||||||
uint8_t production_idx;
|
uint8_t production_idx;
|
||||||
|
|
Loading…
Reference in a new issue