ENH: fix line length and warning

This commit is contained in:
Ken Martin 2006-06-20 09:50:45 -04:00
parent 15ca72a862
commit fe99b156e5
1 changed files with 3 additions and 2 deletions

View File

@ -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<cmLocalUnixMakefileGenerator3 *>
(target.GetMakefile()->GetLocalGenerator());
int result = lg->ProgressFiles[target.GetName()].size();
int result = static_cast<int>(lg->ProgressFiles[target.GetName()].size());
std::vector<cmTarget *>& depends = this->GetTargetDepends(target);
std::vector<cmTarget *>::iterator i;