summaryrefslogtreecommitdiffstats
path: root/Source/cmNinjaTargetGenerator.h
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2014-03-10 22:32:00 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2014-05-02 17:05:44 (GMT)
commit3c640891177923e71a0a50d26988a3595a0f3c43 (patch)
tree53c39f3faeb3ee3a677031d7ca7f369f1960ea6d /Source/cmNinjaTargetGenerator.h
parent94429287454a3b40268dd48db7b38f158bbecd93 (diff)
downloadCMake-3c640891177923e71a0a50d26988a3595a0f3c43.zip
CMake-3c640891177923e71a0a50d26988a3595a0f3c43.tar.gz
CMake-3c640891177923e71a0a50d26988a3595a0f3c43.tar.bz2
ninja: Use string parameters
Diffstat (limited to 'Source/cmNinjaTargetGenerator.h')
-rw-r--r--Source/cmNinjaTargetGenerator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmNinjaTargetGenerator.h b/Source/cmNinjaTargetGenerator.h
index 8073af2..be516e0 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);