1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-19 08:49:35 +01:00

Remove unused parameter to the goal constructor

It has been unused since 37fca662b0.
This commit is contained in:
John Ericson 2025-02-26 11:27:04 -05:00
parent 1055c9fd14
commit ecdcba27c5
4 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@ DrvOutputSubstitutionGoal::DrvOutputSubstitutionGoal(
Worker & worker,
RepairFlag repair,
std::optional<ContentAddress> ca)
: Goal(worker, DerivedPath::Opaque { StorePath::dummy })
: Goal(worker)
, id(id)
{
name = fmt("substitution of '%s'", id.to_string());