1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-09 20:16:03 +01:00

Fix uninitialized variable warnings on i686-linux

https://hydra.nixos.org/build/239849607
This commit is contained in:
Eelco Dolstra 2023-11-03 11:58:47 +01:00
parent 55dd1244d2
commit b0455e9931
5 changed files with 7 additions and 7 deletions

View file

@ -663,7 +663,7 @@ BuiltPaths Installable::toBuiltPaths(
BuiltPaths res;
for (auto & drvPath : Installable::toDerivations(store, installables, true))
res.push_back(BuiltPath::Opaque{drvPath});
res.emplace_back(BuiltPath::Opaque{drvPath});
return res;
}
}