diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-10-26 00:32:01 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-10-26 10:54:32 (GMT) |
commit | b2c85cb698a922c0e87eb9f4a266be83625e97b7 (patch) | |
tree | 3bf7f22fe48979e92b106c6af45d12d44612fa65 /Source/cmListFileCache.cxx | |
parent | e07f147377b73c2d88a6921988c197c3e6a0150e (diff) | |
download | CMake-b2c85cb698a922c0e87eb9f4a266be83625e97b7.zip CMake-b2c85cb698a922c0e87eb9f4a266be83625e97b7.tar.gz CMake-b2c85cb698a922c0e87eb9f4a266be83625e97b7.tar.bz2 |
cmLocalGenerator::AppendDefines: Remove const char* overloads
Accept const std::string& arguments only
Diffstat (limited to 'Source/cmListFileCache.cxx')
-rw-r--r-- | Source/cmListFileCache.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmListFileCache.cxx b/Source/cmListFileCache.cxx index d0495f7..4689f42 100644 --- a/Source/cmListFileCache.cxx +++ b/Source/cmListFileCache.cxx @@ -481,7 +481,7 @@ std::ostream& operator<<(std::ostream& os, BT<std::string> const& s) } std::vector<BT<std::string>> ExpandListWithBacktrace( - const char* list, cmListFileBacktrace const& bt) + std::string const& list, cmListFileBacktrace const& bt) { std::vector<BT<std::string>> result; std::vector<std::string> tmp; |