aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/installables.cc
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-03-04 05:27:35 +0100
committereldritch horrors <pennae@lix.systems>2024-03-04 05:27:35 +0100
commit6e0dd9f6738f58749a9fe31cd0dfcf9fc10cdcfe (patch)
tree043b0ebc2c2f4bb6fe6d19e4c84ca8bef417c0a3 /src/libcmd/installables.cc
parent2633ca3f883bb5f1bba7eb8a310cdf401680fe3b (diff)
Merge pull request #9289 from edolstra/fix-warnings
Fix gcc warnings (cherry picked from commit 66cb364f581486e0c426b35149ac13d19f7842bc) Change-Id: I1474dbc18a4beaaf1bce16d4abbcc99806b79ff1
Diffstat (limited to 'src/libcmd/installables.cc')
-rw-r--r--src/libcmd/installables.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcmd/installables.cc b/src/libcmd/installables.cc
index eb1903084..a9d25671c 100644
--- a/src/libcmd/installables.cc
+++ b/src/libcmd/installables.cc
@@ -669,7 +669,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;
}
}