diff options
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index 1a98931..a817b30 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -982,7 +982,7 @@ GetNumberOfProgressActionsInAll(cmLocalUnixMakefileGenerator3 *lg) (activeTgts.front()->GetMakefile()->GetLocalGenerator()); std::vector<int> &progFiles2 = lg4->ProgressFiles[activeTgts.front()->GetName()]; - result += progFiles2.size(); + result += static_cast<unsigned long>(progFiles2.size()); std::vector<cmTarget *> deps2 = this->GetTargetDepends(*activeTgts.front()); for (std::vector<cmTarget *>::const_iterator di = |