summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-07-17 15:07:44 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-07-17 15:07:44 (GMT)
commit2bf97089baa220ec460ca6289f1e2ad4dd41e404 (patch)
tree16567a9c2621d3fdc482737a8502540e6cdf6f88 /Source/cmGlobalUnixMakefileGenerator3.cxx
parent1087f80c287c129acfbf1a3f2833c039f05e7695 (diff)
downloadCMake-2bf97089baa220ec460ca6289f1e2ad4dd41e404.zip
CMake-2bf97089baa220ec460ca6289f1e2ad4dd41e404.tar.gz
CMake-2bf97089baa220ec460ca6289f1e2ad4dd41e404.tar.bz2
COMP: fix warning
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.cxx2
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 =