aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/store-api.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/store-api.cc')
-rw-r--r--src/libstore/store-api.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc
index 1a28386ef..0fee5559f 100644
--- a/src/libstore/store-api.cc
+++ b/src/libstore/store-api.cc
@@ -913,17 +913,17 @@ string showPaths(const PathSet & paths)
StorePathSet ValidPathInfo::referencesPossiblyToSelf() const
{
- return PathReferences<StorePath>::referencesPossiblyToSelf(path);
+ return PathReferences<StorePath>::referencesPossiblyToSelf(path);
}
void ValidPathInfo::insertReferencePossiblyToSelf(StorePath && ref)
{
- return PathReferences<StorePath>::insertReferencePossiblyToSelf(path, std::move(ref));
+ return PathReferences<StorePath>::insertReferencePossiblyToSelf(path, std::move(ref));
}
void ValidPathInfo::setReferencesPossiblyToSelf(StorePathSet && refs)
{
- return PathReferences<StorePath>::setReferencesPossiblyToSelf(path, std::move(refs));
+ return PathReferences<StorePath>::setReferencesPossiblyToSelf(path, std::move(refs));
}
std::string ValidPathInfo::fingerprint(const Store & store) const