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)
|
if(emitted.insert(lib->first).second)
|
||||||
{
|
{
|
||||||
// Add this dependency.
|
// Add this dependency.
|
||||||
this->AppendAnyGlobalDepend(depends, lib->first.c_str(),
|
this->AppendAnyGlobalDepend(depends, lib->first.c_str(), target);
|
||||||
emitted, target);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -927,7 +926,7 @@ cmGlobalUnixMakefileGenerator3
|
||||||
if(emitted.insert(*util).second)
|
if(emitted.insert(*util).second)
|
||||||
{
|
{
|
||||||
// Add this dependency.
|
// Add this dependency.
|
||||||
this->AppendAnyGlobalDepend(depends, util->c_str(), emitted, target);
|
this->AppendAnyGlobalDepend(depends, util->c_str(), target);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -937,7 +936,7 @@ cmGlobalUnixMakefileGenerator3
|
||||||
void
|
void
|
||||||
cmGlobalUnixMakefileGenerator3
|
cmGlobalUnixMakefileGenerator3
|
||||||
::AppendAnyGlobalDepend(std::vector<std::string>& depends, const char* name,
|
::AppendAnyGlobalDepend(std::vector<std::string>& depends, const char* name,
|
||||||
std::set<cmStdString>& emitted, cmTarget &target)
|
cmTarget &target)
|
||||||
{
|
{
|
||||||
cmTarget *result;
|
cmTarget *result;
|
||||||
cmLocalUnixMakefileGenerator3 *lg3;
|
cmLocalUnixMakefileGenerator3 *lg3;
|
||||||
|
|
|
@ -147,7 +147,6 @@ protected:
|
||||||
cmTarget& target);
|
cmTarget& target);
|
||||||
void AppendAnyGlobalDepend(std::vector<std::string>& depends,
|
void AppendAnyGlobalDepend(std::vector<std::string>& depends,
|
||||||
const char* name,
|
const char* name,
|
||||||
std::set<cmStdString>& emitted,
|
|
||||||
cmTarget &target);
|
cmTarget &target);
|
||||||
|
|
||||||
// does this generator need a requires step for any of its targets
|
// does this generator need a requires step for any of its targets
|
||||||
|
|
Loading…
Reference in New Issue