aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/path-with-outputs.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-03-03 20:53:10 +0100
committerGitHub <noreply@github.com>2022-03-03 20:53:10 +0100
commitb09baf690bb00125805a02e0feae9636b2114599 (patch)
tree94425988649343830763bacb1b3a5bdf4fcff1df /src/libstore/path-with-outputs.cc
parent391f4fcabe6c307afeb2f39dec07d43f1e6bf748 (diff)
parent6636202356b94ca4128462493770e7fedf997b0e (diff)
Merge pull request #6188 from obsidiansystems/store-gc-subclass
Factor out a `GcStore` interface
Diffstat (limited to 'src/libstore/path-with-outputs.cc')
-rw-r--r--src/libstore/path-with-outputs.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstore/path-with-outputs.cc b/src/libstore/path-with-outputs.cc
index 97aa01b57..078c117bd 100644
--- a/src/libstore/path-with-outputs.cc
+++ b/src/libstore/path-with-outputs.cc
@@ -22,9 +22,9 @@ DerivedPath StorePathWithOutputs::toDerivedPath() const
std::vector<DerivedPath> toDerivedPaths(const std::vector<StorePathWithOutputs> ss)
{
- std::vector<DerivedPath> reqs;
- for (auto & s : ss) reqs.push_back(s.toDerivedPath());
- return reqs;
+ std::vector<DerivedPath> reqs;
+ for (auto & s : ss) reqs.push_back(s.toDerivedPath());
+ return reqs;
}