summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCommand.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/cmFileCommand.cxx
parentfa5bf870df1ce5d9cbcf61be736beb0b1e87b85b (diff)
downloadCMake-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.cxx2
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 */