diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2020-03-10 14:00:00 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2020-03-10 14:55:09 (GMT) |
commit | a6cd48ac414238f922999e9ea457f1bc86c35163 (patch) | |
tree | dfd2d3958de911985f7f8051028def90bf32b154 /Source/cmInstalledFile.h | |
parent | c06e0356017beef41cd2bb57a6cebfb242a9128e (diff) | |
download | CMake-a6cd48ac414238f922999e9ea457f1bc86c35163.zip CMake-a6cd48ac414238f922999e9ea457f1bc86c35163.tar.gz CMake-a6cd48ac414238f922999e9ea457f1bc86c35163.tar.bz2 |
Source: use std::string overloads
Diffstat (limited to 'Source/cmInstalledFile.h')
-rw-r--r-- | Source/cmInstalledFile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmInstalledFile.h b/Source/cmInstalledFile.h index 698151e..07f7081 100644 --- a/Source/cmInstalledFile.h +++ b/Source/cmInstalledFile.h @@ -49,10 +49,10 @@ public: void RemoveProperty(const std::string& prop); void SetProperty(cmMakefile const* mf, const std::string& prop, - const char* value); + const std::string& value); void AppendProperty(cmMakefile const* mf, const std::string& prop, - const char* value, bool asString = false); + const std::string& value, bool asString = false); bool HasProperty(const std::string& prop) const; |