diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-08-04 23:17:11 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-08-04 23:17:11 +0000 |
commit | e61061c88e0dfcce9329ea9f0b041a35270dfa1a (patch) | |
tree | 694895f2711364e3b1a76b67a5291cdd5811dbd5 /src/libstore | |
parent | 36dd7920a2ec671c8610cdc4e4a8866ec90675db (diff) |
Remove stray tabs
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/remote-store.cc | 2 | ||||
-rw-r--r-- | src/libstore/store-api.cc | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index d7aef3ea5..273455bae 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -386,7 +386,7 @@ void RemoteStore::querySubstitutablePathInfos(const StorePathCAMap & pathsMap, S conn.processStderr(); size_t count = readNum<size_t>(conn->from); for (size_t n = 0; n < count; n++) { - auto path = parseStorePath(readString(conn->from)); + auto path = parseStorePath(readString(conn->from)); SubstitutablePathInfo & info { infos[path] }; auto deriver = readString(conn->from); if (deriver != "") 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 |