Fix "may be used uninitialized" warning

This commit is contained in:
Eelco Dolstra 2024-02-12 15:29:48 +01:00
parent d3c1997127
commit 619ca631d0

View file

@ -847,7 +847,7 @@ void Store::substitutePaths(const StorePathSet & paths)
if (!willSubstitute.empty())
try {
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);
} catch (Error & e) {
logWarning(e.info());