diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-01-23 01:37:59 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-01-23 01:37:59 (GMT) |
commit | 9e5c13738bdc45b00b529b492bad92800890fb9c (patch) | |
tree | ee07703b2cf6a7178c7f76f934f828afe2b3764e /Source/cmFileAPI.cxx | |
parent | fa5bf870df1ce5d9cbcf61be736beb0b1e87b85b (diff) | |
download | CMake-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.cxx | 2 |
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); } |