COMP: Remove unused parameter of method.

This commit is contained in:
Brad King 2007-12-21 18:32:22 -05:00
parent 3cf3bb664a
commit e23348c5a6
2 changed files with 3 additions and 5 deletions

View File

@ -913,8 +913,7 @@ cmGlobalUnixMakefileGenerator3
if(emitted.insert(lib->first).second)
{
// Add this dependency.
this->AppendAnyGlobalDepend(depends, lib->first.c_str(),
emitted, target);
this->AppendAnyGlobalDepend(depends, lib->first.c_str(), target);
}
}
@ -927,7 +926,7 @@ cmGlobalUnixMakefileGenerator3
if(emitted.insert(*util).second)
{
// Add this dependency.
this->AppendAnyGlobalDepend(depends, util->c_str(), emitted, target);
this->AppendAnyGlobalDepend(depends, util->c_str(), target);
}
}
}
@ -937,7 +936,7 @@ cmGlobalUnixMakefileGenerator3
void
cmGlobalUnixMakefileGenerator3
::AppendAnyGlobalDepend(std::vector<std::string>& depends, const char* name,
std::set<cmStdString>& emitted, cmTarget &target)
cmTarget &target)
{
cmTarget *result;
cmLocalUnixMakefileGenerator3 *lg3;

View File

@ -147,7 +147,6 @@ protected:
cmTarget& target);
void AppendAnyGlobalDepend(std::vector<std::string>& depends,
const char* name,
std::set<cmStdString>& emitted,
cmTarget &target);
// does this generator need a requires step for any of its targets