aboutsummaryrefslogtreecommitdiffhomepage
path: root/parse_tree.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-10-09 03:45:58 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-10-09 03:45:58 -0700
commite763345f25f1ddc6b4f149da12fe947a9c2c8a71 (patch)
tree0490a18cfb2f238215ba0382dd5c97666c593dd1 /parse_tree.h
parent7b86b2e05a011e37bf11bba2675ef5db684bca24 (diff)
Reduce child_count in node structure to 8 bits
Diffstat (limited to 'parse_tree.h')
-rw-r--r--parse_tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse_tree.h b/parse_tree.h
index 945d550c..b83e47ab 100644
--- a/parse_tree.h
+++ b/parse_tree.h
@@ -176,7 +176,7 @@ public:
/* Children */
node_offset_t child_start;
- node_offset_t child_count;
+ uint8_t child_count;
/* Which production was used */
uint8_t production_idx;