COMP: Remove unused parameter of method.
This commit is contained in:
parent
3cf3bb664a
commit
e23348c5a6
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue