diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-01-13 15:06:07 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-01-13 15:06:07 -0500 |
commit | 2e7be46e73293f729358eefc5b464dcb7e2d76bf (patch) | |
tree | fadac2f673bc44e3c771a9e34ec10c7f27730cf2 /src/libstore/store-api.cc | |
parent | 91617f80ec03ff4580a656310959ce2e31e0d177 (diff) |
Move new `ValidPathInfo` methods to path-info.cc
We'll move the old ones separately, so as not to clutter the diff.
Diffstat (limited to 'src/libstore/store-api.cc')
-rw-r--r-- | src/libstore/store-api.cc | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc index 5490df292..a4e98d66b 100644 --- a/src/libstore/store-api.cc +++ b/src/libstore/store-api.cc @@ -1228,21 +1228,6 @@ std::string showPaths(const PathSet & paths) return concatStringsSep(", ", quoteStrings(paths)); } -StorePathSet ValidPathInfo::referencesPossiblyToSelf() const -{ - return references.possiblyToSelf(path); -} - -void ValidPathInfo::insertReferencePossiblyToSelf(StorePath && ref) -{ - return references.insertPossiblyToSelf(path, std::move(ref)); -} - -void ValidPathInfo::setReferencesPossiblyToSelf(StorePathSet && refs) -{ - return references.setPossiblyToSelf(path, std::move(refs)); -} - std::string ValidPathInfo::fingerprint(const Store & store) const { if (narSize == 0) |