summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2019-05-22 13:16:42 (GMT)
committerBrad King <brad.king@kitware.com>2019-05-22 14:51:06 (GMT)
commite884b1b69365e9dc15fff572a6ff2237c1bb7644 (patch)
treebad78de74a06120f8bcaa6e5966f38f1a5e6e180 /Source/CTest
parent01b6a2c4ee8930e60459b46b4d751148ce28d5a9 (diff)
downloadCMake-e884b1b69365e9dc15fff572a6ff2237c1bb7644.zip
CMake-e884b1b69365e9dc15fff572a6ff2237c1bb7644.tar.gz
CMake-e884b1b69365e9dc15fff572a6ff2237c1bb7644.tar.bz2
cmSystemTools::Error(): remove const char* overload
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestScriptHandler.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestScriptHandler.cxx b/Source/CTest/cmCTestScriptHandler.cxx
index 43cfe16..a739f44 100644
--- a/Source/CTest/cmCTestScriptHandler.cxx
+++ b/Source/CTest/cmCTestScriptHandler.cxx
@@ -447,7 +447,8 @@ int cmCTestScriptHandler::ExtractVariables()
if (updateVal) {
if (this->UpdateCmd.empty()) {
cmSystemTools::Error(
- updateVar, " specified without specifying CTEST_CVS_COMMAND.");
+ std::string(updateVar) +
+ " specified without specifying CTEST_CVS_COMMAND.");
return 12;
}
this->ExtraUpdates.emplace_back(updateVal);