From fe99b156e5b8ddf34d2635c3c3192cfafd9b63af Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Tue, 20 Jun 2006 09:50:45 -0400 Subject: [PATCH] ENH: fix line length and warning --- Source/cmGlobalUnixMakefileGenerator3.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index cf7d748e3..3941d9f57 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -868,7 +868,8 @@ cmGlobalUnixMakefileGenerator3 cmLocalGenerator::FULL, cmLocalGenerator::SHELL); // - progCmd << " " << this->GetTargetTotalNumberOfProgressFiles(t->second); + progCmd << " " + << this->GetTargetTotalNumberOfProgressFiles(t->second); commands.push_back(progCmd.str()); } std::string tmp = cmake::GetCMakeFilesDirectoryPostSlash(); @@ -944,7 +945,7 @@ int cmGlobalUnixMakefileGenerator3 cmLocalUnixMakefileGenerator3 *lg = static_cast (target.GetMakefile()->GetLocalGenerator()); - int result = lg->ProgressFiles[target.GetName()].size(); + int result = static_cast(lg->ProgressFiles[target.GetName()].size()); std::vector& depends = this->GetTargetDepends(target); std::vector::iterator i;