mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-20 21:40:15 +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.
|
// Copy the file.
|
||||||
if (copy) {
|
if (copy) {
|
||||||
auto copy_status = cmSystemTools::CopyAFile(fromFile, toFile, true);
|
auto copy_status = cmSystemTools::CopyAFile(fromFile, toFile);
|
||||||
if (!copy_status) {
|
if (!copy_status) {
|
||||||
std::ostringstream e;
|
std::ostringstream e;
|
||||||
e << this->Name << " cannot copy file \"" << fromFile << "\" to \""
|
e << this->Name << " cannot copy file \"" << fromFile << "\" to \""
|
||||||
|
Reference in New Issue
Block a user