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.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/parse_tree.h b/src/parse_tree.h
index 8ae9ee88..9fd17645 100644
--- a/src/parse_tree.h
+++ b/src/parse_tree.h
@@ -2,18 +2,19 @@
Programmatic representation of fish code.
*/
-
#ifndef FISH_PARSE_PRODUCTIONS_H
#define FISH_PARSE_PRODUCTIONS_H
#include <assert.h>
#include <stddef.h>
-#include <stdint.h>
+#include <vector>
+#include <memory>
+#include <sys/types.h>
+#include <stdbool.h>
#include "common.h"
#include "tokenizer.h"
#include "parse_constants.h"
-#include <vector>
class parse_node_tree_t;