mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-20 04:24:36 +08:00
cmFileCopier: Remove explicit default argument
This commit is contained in:
@@ -618,7 +618,7 @@ bool cmFileCopier::InstallFile(std::string const& fromFile,
|
||||
|
||||
// Copy the file.
|
||||
if (copy) {
|
||||
auto copy_status = cmSystemTools::CopyAFile(fromFile, toFile, true);
|
||||
auto copy_status = cmSystemTools::CopyAFile(fromFile, toFile);
|
||||
if (!copy_status) {
|
||||
std::ostringstream e;
|
||||
e << this->Name << " cannot copy file \"" << fromFile << "\" to \""
|
||||
|
Reference in New Issue
Block a user