diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-03-03 20:53:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 20:53:10 +0100 |
commit | b09baf690bb00125805a02e0feae9636b2114599 (patch) | |
tree | 94425988649343830763bacb1b3a5bdf4fcff1df /src/libstore/path-with-outputs.cc | |
parent | 391f4fcabe6c307afeb2f39dec07d43f1e6bf748 (diff) | |
parent | 6636202356b94ca4128462493770e7fedf997b0e (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.cc | 6 |
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; } |