Ninja: Remove some default arguments
This commit is contained in:
parent
69984906ef
commit
bfe56f6802
|
@ -767,8 +767,5 @@ void cmGlobalNinjaGenerator::WriteTargetRebuildManifest(std::ostream& os)
|
|||
WritePhonyBuild(os,
|
||||
"A missing CMake input file is not an error.",
|
||||
implicitDeps,
|
||||
cmNinjaDeps(),
|
||||
cmNinjaDeps(),
|
||||
cmNinjaDeps(),
|
||||
cmNinjaVars());
|
||||
cmNinjaDeps());
|
||||
}
|
||||
|
|
|
@ -88,10 +88,7 @@ void cmNinjaUtilityTargetGenerator::Generate()
|
|||
cmGlobalNinjaGenerator::WritePhonyBuild(this->GetBuildFileStream(),
|
||||
"",
|
||||
outputs,
|
||||
cmNinjaDeps(1, utilCommandName),
|
||||
cmNinjaDeps(),
|
||||
cmNinjaDeps(),
|
||||
cmNinjaVars());
|
||||
cmNinjaDeps(1, utilCommandName));
|
||||
}
|
||||
|
||||
this->GetGlobalGenerator()->AddTargetAlias(this->GetTargetName(),
|
||||
|
|
Loading…
Reference in New Issue