aboutsummaryrefslogtreecommitdiffhomepage
path: root/parse_tree.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parse_tree.cpp')
-rw-r--r--parse_tree.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/parse_tree.cpp b/parse_tree.cpp
index ed3025ed..f357d5ff 100644
--- a/parse_tree.cpp
+++ b/parse_tree.cpp
@@ -1,9 +1,18 @@
+#include <assert.h>
+#include <stdarg.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <wchar.h>
+#include <string>
+#include "common.h"
+#include "parse_constants.h"
#include "parse_productions.h"
+#include "parse_tree.h"
#include "tokenizer.h"
#include "fallback.h"
-#include "wutil.h"
+#include "wutil.h" // IWYU pragma: keep - needed for wgettext
#include "proc.h"
-#include "expand.h"
#include <vector>
#include <algorithm>