aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parse_productions.h
diff options
context:
space:
mode:
authorGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2015-07-29 09:30:19 +0800
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2015-07-29 09:30:19 +0800
commita6a16808e34966fa8650fdda0538ba85a8019c5e (patch)
tree3d731ab1a78551aea75e6dd321918a4f61c857b0 /src/parse_productions.h
parentaee71b594b11d4bc6b5be9f4c6febb35c41a3096 (diff)
parent958880d97251b09af5c639a11d914067929e91af (diff)
Merge branch 'iwyu'
Diffstat (limited to 'src/parse_productions.h')
-rw-r--r--src/parse_productions.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/parse_productions.h b/src/parse_productions.h
index df3ae9c9..1d64ccfc 100644
--- a/src/parse_productions.h
+++ b/src/parse_productions.h
@@ -6,8 +6,11 @@
#ifndef FISH_PARSE_TREE_CONSTRUCTION_H
#define FISH_PARSE_TREE_CONSTRUCTION_H
-#include "parse_tree.h"
-#include <inttypes.h>
+#include <stdint.h> // for uint8_t, uint32_t
+#include "common.h" // for wcstring
+#include "parse_constants.h" // for parse_token_type_t, etc
+
+struct parse_token_t;
namespace parse_productions
{