summaryrefslogtreecommitdiff
path: root/Source/cmTest.cxx
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2020-01-25 10:37:00 -0500
committerVitaly Stakhovsky <vvs31415@gitlab.org>2020-01-25 10:37:00 -0500
commit1398517f315b2b0420972df1dc1e61294ea5f749 (patch)
tree91d5278f549d2f49a441e127215c8ca0896586b6 /Source/cmTest.cxx
parent33e7bd66c09ee51edbbccfc1014813e30d80ec5f (diff)
downloadcmake-1398517f315b2b0420972df1dc1e61294ea5f749.tar.gz
AppendProperty: convert value param to std::string
Diffstat (limited to 'Source/cmTest.cxx')
-rw-r--r--Source/cmTest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTest.cxx b/Source/cmTest.cxx
index d5c61c1736..3b731cc5bc 100644
--- a/Source/cmTest.cxx
+++ b/Source/cmTest.cxx
@@ -55,7 +55,7 @@ void cmTest::SetProperty(const std::string& prop, const char* value)
this->Properties.SetProperty(prop, value);
}
-void cmTest::AppendProperty(const std::string& prop, const char* value,
+void cmTest::AppendProperty(const std::string& prop, const std::string& value,
bool asString)
{
this->Properties.AppendProperty(prop, value, asString);