aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parse_tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse_tree.h')
-rw-r--r--src/parse_tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse_tree.h b/src/parse_tree.h
index b4c4b8ba..4d0ad4a6 100644
--- a/src/parse_tree.h
+++ b/src/parse_tree.h
@@ -103,10 +103,10 @@ public:
enum parse_keyword_t keyword;
/* Node flags */
- parse_node_flags_t flags;
+ parse_node_flags_t flags:4;
/* This is used to store e.g. the statement decoration. */
- parse_node_tag_t tag;
+ parse_node_tag_t tag:4;
/* Description */
wcstring describe(void) const;