summaryrefslogtreecommitdiffstats
path: root/Source/cmFileAPI.cxx
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2019-01-23 01:37:59 (GMT)
committerVitaly Stakhovsky <vvs31415@gitlab.org>2019-01-23 01:37:59 (GMT)
commit9e5c13738bdc45b00b529b492bad92800890fb9c (patch)
treeee07703b2cf6a7178c7f76f934f828afe2b3764e /Source/cmFileAPI.cxx
parentfa5bf870df1ce5d9cbcf61be736beb0b1e87b85b (diff)
downloadCMake-9e5c13738bdc45b00b529b492bad92800890fb9c.zip
CMake-9e5c13738bdc45b00b529b492bad92800890fb9c.tar.gz
CMake-9e5c13738bdc45b00b529b492bad92800890fb9c.tar.bz2
cmSystemTools::RenameFile: Accepts std::string args
Diffstat (limited to 'Source/cmFileAPI.cxx')
-rw-r--r--Source/cmFileAPI.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileAPI.cxx b/Source/cmFileAPI.cxx
index 89bd258..34b6b33 100644
--- a/Source/cmFileAPI.cxx
+++ b/Source/cmFileAPI.cxx
@@ -169,7 +169,7 @@ std::string cmFileAPI::WriteJsonFile(
// If the final name already exists then assume it has proper content.
// Otherwise, atomically place the reply file at its final name
if (cmSystemTools::FileExists(file, true) ||
- !cmSystemTools::RenameFile(tmpFile.c_str(), file.c_str())) {
+ !cmSystemTools::RenameFile(tmpFile, file)) {
cmSystemTools::RemoveFile(tmpFile);
}