From e763345f25f1ddc6b4f149da12fe947a9c2c8a71 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Wed, 9 Oct 2013 03:45:58 -0700 Subject: [PATCH] Reduce child_count in node structure to 8 bits --- parse_tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse_tree.h b/parse_tree.h index 945d550c4..b83e47abc 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;