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/cmFileCommand.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/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 999af54..c9ae38c 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -2461,7 +2461,7 @@ bool cmFileCommand::HandleRename(std::vector<std::string> const& args) newname += "/" + args[2]; } - if (!cmSystemTools::RenameFile(oldname.c_str(), newname.c_str())) { + if (!cmSystemTools::RenameFile(oldname, newname)) { std::string err = cmSystemTools::GetLastSystemError(); std::ostringstream e; /* clang-format off */ |