mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 08:46:16 +02:00
Remove stray tabs
This commit is contained in:
parent
36dd7920a2
commit
e61061c88e
2 changed files with 4 additions and 4 deletions
|
@ -386,7 +386,7 @@ void RemoteStore::querySubstitutablePathInfos(const StorePathCAMap & pathsMap, S
|
||||||
conn.processStderr();
|
conn.processStderr();
|
||||||
size_t count = readNum<size_t>(conn->from);
|
size_t count = readNum<size_t>(conn->from);
|
||||||
for (size_t n = 0; n < count; n++) {
|
for (size_t n = 0; n < count; n++) {
|
||||||
auto path = parseStorePath(readString(conn->from));
|
auto path = parseStorePath(readString(conn->from));
|
||||||
SubstitutablePathInfo & info { infos[path] };
|
SubstitutablePathInfo & info { infos[path] };
|
||||||
auto deriver = readString(conn->from);
|
auto deriver = readString(conn->from);
|
||||||
if (deriver != "")
|
if (deriver != "")
|
||||||
|
|
|
@ -913,17 +913,17 @@ string showPaths(const PathSet & paths)
|
||||||
|
|
||||||
StorePathSet ValidPathInfo::referencesPossiblyToSelf() const
|
StorePathSet ValidPathInfo::referencesPossiblyToSelf() const
|
||||||
{
|
{
|
||||||
return PathReferences<StorePath>::referencesPossiblyToSelf(path);
|
return PathReferences<StorePath>::referencesPossiblyToSelf(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ValidPathInfo::insertReferencePossiblyToSelf(StorePath && ref)
|
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)
|
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
|
std::string ValidPathInfo::fingerprint(const Store & store) const
|
||||||
|
|
Loading…
Reference in a new issue