summaryrefslogtreecommitdiff
path: root/Source/cmListFileCache.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-01 20:59:28 +0200
committerBrad King <brad.king@kitware.com>2016-09-03 08:04:56 -0400
commitefed6468eda950644014ccfada85300710e05009 (patch)
tree34373674a96941d95ee8443e34936ff66da8f56a /Source/cmListFileCache.h
parentbd3d0eafbb362fbc0f140c228da85791a473e44e (diff)
downloadcmake-efed6468eda950644014ccfada85300710e05009.tar.gz
fix a load of include-what-you-use violations
Diffstat (limited to 'Source/cmListFileCache.h')
-rw-r--r--Source/cmListFileCache.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmListFileCache.h b/Source/cmListFileCache.h
index 08b59ebd57..215f17908e 100644
--- a/Source/cmListFileCache.h
+++ b/Source/cmListFileCache.h
@@ -12,9 +12,11 @@
#ifndef cmListFileCache_h
#define cmListFileCache_h
-#include <cmConfigure.h>
+#include <cmConfigure.h> // IWYU pragma: keep
-#include "cmStandardIncludes.h"
+#include <iosfwd>
+#include <string>
+#include <vector>
#include "cmState.h"
@@ -151,6 +153,7 @@ public:
private:
struct Entry;
+
cmState::Snapshot Bottom;
Entry* Cur;
cmListFileBacktrace(cmState::Snapshot bottom, Entry* up,