소스 검색

COMP: Eliminate compiler warning on 64-bit build.

David Cole 17 년 전
부모
커밋
974feca643
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Source/CPack/cmCPackGenerator.cxx

+ 2 - 1
Source/CPack/cmCPackGenerator.cxx

@@ -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;
 }