diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-03-10 18:32:00 -0400 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2014-05-02 13:05:44 -0400 |
commit | 3c640891177923e71a0a50d26988a3595a0f3c43 (patch) | |
tree | 53c39f3faeb3ee3a677031d7ca7f369f1960ea6d /Source/cmNinjaTargetGenerator.h | |
parent | 94429287454a3b40268dd48db7b38f158bbecd93 (diff) | |
download | cmake-3c640891177923e71a0a50d26988a3595a0f3c43.tar.gz |
ninja: Use string parameters
Diffstat (limited to 'Source/cmNinjaTargetGenerator.h')
-rw-r--r-- | Source/cmNinjaTargetGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmNinjaTargetGenerator.h b/Source/cmNinjaTargetGenerator.h index 8073af225a..be516e07a1 100644 --- a/Source/cmNinjaTargetGenerator.h +++ b/Source/cmNinjaTargetGenerator.h @@ -85,7 +85,7 @@ protected: std::string ComputeDefines(cmSourceFile const* source, const std::string& language); - std::string ConvertToNinjaPath(const char *path) const { + std::string ConvertToNinjaPath(const std::string& path) const { return this->GetLocalGenerator()->ConvertToNinjaPath(path); } cmLocalNinjaGenerator::map_to_ninja_path MapToNinjaPath() const { @@ -142,7 +142,7 @@ protected: cmOSXBundleGenerator* OSXBundleGenerator; std::set<std::string> MacContentFolders; - void addPoolNinjaVariable(const char* pool_property, + void addPoolNinjaVariable(const std::string& pool_property, cmTarget* target, cmNinjaVars& vars); |