1
0
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:
Brad King
2025-07-21 10:41:38 -04:00
parent 8eeeeb7efe
commit ce54396676

View File

@@ -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 \""