diff options
author | Brad King <brad.king@kitware.com> | 2019-01-16 13:26:47 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-17 11:43:56 -0500 |
commit | 2e5307a2a45d456b7fb52e4d3fab1416dc9a1bd8 (patch) | |
tree | d919682c747ea186076a6cf781a44cdc7e7264d0 /Source/CTest/cmCTestSVN.cxx | |
parent | 68e20f674a48be38d60e129f600faf7c483f2b97 (diff) | |
download | cmake-2e5307a2a45d456b7fb52e4d3fab1416dc9a1bd8.tar.gz |
CTestSVN: Accept std::string in SVNInfo constructor
Diffstat (limited to 'Source/CTest/cmCTestSVN.cxx')
-rw-r--r-- | Source/CTest/cmCTestSVN.cxx | 2 |
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); } }; |