diff options
Diffstat (limited to 'Source/cmFileInstaller.cxx')
| -rw-r--r-- | Source/cmFileInstaller.cxx | 9 | 
1 files changed, 1 insertions, 8 deletions
diff --git a/Source/cmFileInstaller.cxx b/Source/cmFileInstaller.cxx index 9bfbd13..5cfb2cf 100644 --- a/Source/cmFileInstaller.cxx +++ b/Source/cmFileInstaller.cxx @@ -23,13 +23,6 @@ using namespace cmFSPermissions;  cmFileInstaller::cmFileInstaller(cmExecutionStatus& status)    : cmFileCopier(status, "INSTALL") -  , InstallType(cmInstallType_FILES) -  , InstallMode(cmInstallMode::COPY) -  , Optional(false) -  , MessageAlways(false) -  , MessageLazy(false) -  , MessageNever(false) -  , DestDirLength(0)  {    // Installation does not use source permissions by default.    this->UseSourcePermissions = false; @@ -440,7 +433,7 @@ bool cmFileInstaller::HandleInstallDestination()        }      }      destination = sdestdir + destination.substr(skip); -    this->DestDirLength = int(sdestdir.size()); +    this->DestDirLength = static_cast<int>(sdestdir.size());    }    // check if default dir creation permissions were set  | 
