diff options
author | Brad King <brad.king@kitware.com> | 2019-01-25 12:58:11 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-01-25 13:00:14 (GMT) |
commit | c18fc30d1a0c67780fdea4ccd0a84a601ad7e8ef (patch) | |
tree | a57fafb6cf3f198ec82e8b8197b2f2051f3193ec /Source/cmFileAPI.cxx | |
parent | 9f84cbd8c323a5a59b666a8bc8199e52a181bb35 (diff) | |
parent | 9e5c13738bdc45b00b529b492bad92800890fb9c (diff) | |
download | CMake-c18fc30d1a0c67780fdea4ccd0a84a601ad7e8ef.zip CMake-c18fc30d1a0c67780fdea4ccd0a84a601ad7e8ef.tar.gz CMake-c18fc30d1a0c67780fdea4ccd0a84a601ad7e8ef.tar.bz2 |
Merge topic 'renamefile-string'
9e5c13738b cmSystemTools::RenameFile: Accepts std::string args
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2842
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); } |