diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2021-11-14 10:58:11 (GMT) |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2021-11-19 15:50:33 (GMT) |
commit | 0e58a5ea0797f2bb0a99ded98244705eb8c85708 (patch) | |
tree | 2cd2daca25a2625f4cd5a12e78156199022284d3 /Source/cmVisualStudio10TargetGenerator.h | |
parent | eb9991ad62666649b0349b8c1e88255330c1c05c (diff) | |
download | CMake-0e58a5ea0797f2bb0a99ded98244705eb8c85708.zip CMake-0e58a5ea0797f2bb0a99ded98244705eb8c85708.tar.gz CMake-0e58a5ea0797f2bb0a99ded98244705eb8c85708.tar.bz2 |
Source: Fix possible IWYU warnings in Windows generators
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.h')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.h b/Source/cmVisualStudio10TargetGenerator.h index a5ce5e5..e4b48c3 100644 --- a/Source/cmVisualStudio10TargetGenerator.h +++ b/Source/cmVisualStudio10TargetGenerator.h @@ -4,12 +4,13 @@ #include "cmConfigure.h" // IWYU pragma: keep -#include <iosfwd> +#include <cstddef> #include <map> #include <memory> #include <set> #include <string> #include <unordered_map> +#include <utility> #include <vector> #include "cmGeneratorTarget.h" @@ -17,7 +18,6 @@ class cmComputeLinkInformation; class cmCustomCommand; class cmCustomCommandGenerator; -class cmGeneratedFileStream; class cmGlobalVisualStudio10Generator; class cmLocalVisualStudio10Generator; class cmMakefile; |