summaryrefslogtreecommitdiff
path: root/Source/CTest/cmCTestSVN.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-16 13:26:47 -0500
committerBrad King <brad.king@kitware.com>2019-01-17 11:43:56 -0500
commit2e5307a2a45d456b7fb52e4d3fab1416dc9a1bd8 (patch)
treed919682c747ea186076a6cf781a44cdc7e7264d0 /Source/CTest/cmCTestSVN.cxx
parent68e20f674a48be38d60e129f600faf7c483f2b97 (diff)
downloadcmake-2e5307a2a45d456b7fb52e4d3fab1416dc9a1bd8.tar.gz
CTestSVN: Accept std::string in SVNInfo constructor
Diffstat (limited to 'Source/CTest/cmCTestSVN.cxx')
-rw-r--r--Source/CTest/cmCTestSVN.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestSVN.cxx b/Source/CTest/cmCTestSVN.cxx
index 6c439e9ad8..21f5e1c797 100644
--- a/Source/CTest/cmCTestSVN.cxx
+++ b/Source/CTest/cmCTestSVN.cxx
@@ -521,7 +521,7 @@ private:
} else {
local_path = path;
}
- this->SVN->Repositories.emplace_back(local_path.c_str());
+ this->SVN->Repositories.emplace_back(local_path);
}
};