aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/autoload.cpp
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/autoload.cpp
parentaee71b594b11d4bc6b5be9f4c6febb35c41a3096 (diff)
parent958880d97251b09af5c639a11d914067929e91af (diff)
Merge branch 'iwyu'
Diffstat (limited to 'src/autoload.cpp')
-rw-r--r--src/autoload.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/autoload.cpp b/src/autoload.cpp
index e0c16ab8..c5029362 100644
--- a/src/autoload.cpp
+++ b/src/autoload.cpp
@@ -3,14 +3,21 @@
The classes responsible for autoloading functions and completions.
*/
-#include "config.h"
+#include "config.h" // IWYU pragma: keep
#include "autoload.h"
#include "wutil.h"
#include "common.h"
-#include "signal.h"
+#include "signal.h" // IWYU pragma: keep - needed for CHECK_BLOCK
#include "env.h"
#include "exec.h"
#include <assert.h>
+#include <errno.h>
+#include <sys/stat.h>
+#include <unistd.h>
+#include <wchar.h>
+#include <string>
+#include <utility>
+#include <vector>
#include <algorithm>
/* The time before we'll recheck an autoloaded file */