aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parser.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/parser.h
parentaee71b594b11d4bc6b5be9f4c6febb35c41a3096 (diff)
parent958880d97251b09af5c639a11d914067929e91af (diff)
Merge branch 'iwyu'
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/parser.h b/src/parser.h
index 1afced17..d7ee0570 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -5,13 +5,16 @@
#ifndef FISH_PARSER_H
#define FISH_PARSER_H
-#include <wchar.h>
+#include <stddef.h> // for size_t
+#include <list> // for _List_const_iterator, list, etc
+#include "common.h"
#include "proc.h"
-#include "util.h"
#include "event.h"
-#include "function.h"
#include "parse_tree.h"
+#include "io.h"
+#include "parse_constants.h"
+
#include <vector>
/**
@@ -227,6 +230,7 @@ struct profile_item_t
};
class parse_execution_context_t;
+class completion_t;
class parser_t
{