diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-07-17 15:07:44 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-07-17 15:07:44 (GMT) |
commit | 2bf97089baa220ec460ca6289f1e2ad4dd41e404 (patch) | |
tree | 16567a9c2621d3fdc482737a8502540e6cdf6f88 /Source/cmGlobalUnixMakefileGenerator3.cxx | |
parent | 1087f80c287c129acfbf1a3f2833c039f05e7695 (diff) | |
download | CMake-2bf97089baa220ec460ca6289f1e2ad4dd41e404.zip CMake-2bf97089baa220ec460ca6289f1e2ad4dd41e404.tar.gz CMake-2bf97089baa220ec460ca6289f1e2ad4dd41e404.tar.bz2 |
COMP: fix warning
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 = |