COMP: Eliminate compiler warning on 64-bit build.
This commit is contained in:
parent
0fe9afdf5e
commit
974feca643
|
@ -1221,7 +1221,8 @@ cmCPackGenerator::GetInstallationType(const char *projectName, const char *name)
|
|||
installType->DisplayName = installType->Name;
|
||||
}
|
||||
|
||||
installType->Index = this->InstallationTypes.size();
|
||||
installType->Index = static_cast<unsigned>(
|
||||
this->InstallationTypes.size());
|
||||
}
|
||||
return installType;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue