mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-19 17:46:46 +02:00
Fix "may be used uninitialized" warning
This commit is contained in:
parent
d3c1997127
commit
619ca631d0
1 changed files with 1 additions and 1 deletions
|
@ -847,7 +847,7 @@ void Store::substitutePaths(const StorePathSet & paths)
|
||||||
if (!willSubstitute.empty())
|
if (!willSubstitute.empty())
|
||||||
try {
|
try {
|
||||||
std::vector<DerivedPath> subs;
|
std::vector<DerivedPath> subs;
|
||||||
for (auto & p : willSubstitute) subs.push_back(DerivedPath::Opaque{p});
|
for (auto & p : willSubstitute) subs.emplace_back(DerivedPath::Opaque{p});
|
||||||
buildPaths(subs);
|
buildPaths(subs);
|
||||||
} catch (Error & e) {
|
} catch (Error & e) {
|
||||||
logWarning(e.info());
|
logWarning(e.info());
|
||||||
|
|
Loading…
Reference in a new issue