diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-05-14 09:16:11 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-05-15 10:20:05 -0400 |
commit | 23e8364aedcbeb7ce606b6075c98827e52f0c7f6 (patch) | |
tree | 66d765b7cc87c36b24efa83b4749ee0959863666 /Source/cmExtraCodeBlocksGenerator.h | |
parent | e2d0aea2c734c8c5028f3573082e75bd157dbe72 (diff) | |
download | cmake-23e8364aedcbeb7ce606b6075c98827e52f0c7f6.tar.gz |
Source: std::string related cleanup
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.h')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.h b/Source/cmExtraCodeBlocksGenerator.h index be3af25625..173e284005 100644 --- a/Source/cmExtraCodeBlocksGenerator.h +++ b/Source/cmExtraCodeBlocksGenerator.h @@ -42,12 +42,13 @@ private: std::string GetCBCompilerId(const cmMakefile* mf); int GetCBTargetType(cmGeneratorTarget* target); - std::string BuildMakeCommand(const std::string& make, const char* makefile, + std::string BuildMakeCommand(const std::string& make, + const std::string& makefile, const std::string& target, const std::string& makeFlags); void AppendTarget(cmXMLWriter& xml, const std::string& targetName, - cmGeneratorTarget* target, const char* make, - const cmLocalGenerator* lg, const char* compiler, + cmGeneratorTarget* target, const std::string& make, + const cmLocalGenerator* lg, const std::string& compiler, const std::string& makeFlags); }; |