diff options
author | Brad King <brad.king@kitware.com> | 2019-03-20 13:43:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-03-20 13:48:29 (GMT) |
commit | f7dca1fc97c08146da33a2d6a3ba22ad8e08d94a (patch) | |
tree | 81852e188c9f6b4aa08eb118e3aca4e0f495e66f /Source/cmLocalGhsMultiGenerator.h | |
parent | 41d796c09be11da2284182e7da7f79940e86e07b (diff) | |
download | CMake-f7dca1fc97c08146da33a2d6a3ba22ad8e08d94a.zip CMake-f7dca1fc97c08146da33a2d6a3ba22ad8e08d94a.tar.gz CMake-f7dca1fc97c08146da33a2d6a3ba22ad8e08d94a.tar.bz2 |
GHS: Fix include-what-you-use and clang-tidy diagnostics
We will soon build GHS sources on Linux where we run these lints.
Diffstat (limited to 'Source/cmLocalGhsMultiGenerator.h')
-rw-r--r-- | Source/cmLocalGhsMultiGenerator.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Source/cmLocalGhsMultiGenerator.h b/Source/cmLocalGhsMultiGenerator.h index 2584fd3..b6ccd08 100644 --- a/Source/cmLocalGhsMultiGenerator.h +++ b/Source/cmLocalGhsMultiGenerator.h @@ -5,7 +5,14 @@ #include "cmLocalGenerator.h" -class cmGeneratedFileStream; +#include <map> +#include <string> +#include <vector> + +class cmGeneratorTarget; +class cmGlobalGenerator; +class cmMakefile; +class cmSourceFile; /** \class cmLocalGhsMultiGenerator * \brief Write Green Hills MULTI project files. @@ -18,7 +25,7 @@ class cmLocalGhsMultiGenerator : public cmLocalGenerator public: cmLocalGhsMultiGenerator(cmGlobalGenerator* gg, cmMakefile* mf); - virtual ~cmLocalGhsMultiGenerator(); + ~cmLocalGhsMultiGenerator() override; /** * Generate the makefile for this directory. |