diff options
author | Fred Baksik <frodak17@gmail.com> | 2019-01-05 16:01:22 (GMT) |
---|---|---|
committer | Fred Baksik <frodak17@gmail.com> | 2019-01-16 15:41:31 (GMT) |
commit | b2a72ec72d609547d2278701a56237822c0dcc92 (patch) | |
tree | 9c69a8b59f44d21cdd17f852f3b2902136cb9e80 /Source/cmGhsMultiGpj.h | |
parent | 595932c4f0570ab6bdef0a50a321877ffa9c50e4 (diff) | |
download | CMake-b2a72ec72d609547d2278701a56237822c0dcc92.zip CMake-b2a72ec72d609547d2278701a56237822c0dcc92.tar.gz CMake-b2a72ec72d609547d2278701a56237822c0dcc92.tar.bz2 |
GHS: Cleanup unused file handling functions and file output updates
-- File handling cleanup
-- Rename some functions to clarify what they do
-- Update to source file path conversion; only perform conversion when using windows
Diffstat (limited to 'Source/cmGhsMultiGpj.h')
-rw-r--r-- | Source/cmGhsMultiGpj.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGhsMultiGpj.h b/Source/cmGhsMultiGpj.h index 014f6b6..6d59225 100644 --- a/Source/cmGhsMultiGpj.h +++ b/Source/cmGhsMultiGpj.h @@ -4,6 +4,7 @@ #define cmGhsMultiGpj_h #include "cmConfigure.h" // IWYU pragma: keep +#include <iosfwd> class cmGeneratedFileStream; @@ -20,8 +21,7 @@ public: SUBPROJECT }; - static void WriteGpjTag(Types const gpjType, - cmGeneratedFileStream* filestream); + static void WriteGpjTag(Types const gpjType, std::ostream& fout); static const char* GetGpjTag(Types const gpjType); }; |