Explain various .self = false,

Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
This commit is contained in:
John Ericson
2023-04-17 09:15:11 -04:00
committed by GitHub
parent fd21f9d76e
commit 537e8719f2
3 changed files with 4 additions and 0 deletions

View File

@@ -315,6 +315,7 @@ StorePath BinaryCacheStore::addToStoreFromDump(Source & dump, std::string_view n
},
.references = {
.others = references,
// caller is not capable of creating a self-reference, because this is content-addressed without modulus
.self = false,
},
},
@@ -433,6 +434,7 @@ StorePath BinaryCacheStore::addToStore(
},
.references = {
.others = references,
// caller is not capable of creating a self-reference, because this is content-addressed without modulus
.self = false,
},
},

View File

@@ -1328,6 +1328,7 @@ StorePath LocalStore::addToStoreFromDump(Source & source0, std::string_view name
},
.references = {
.others = references,
// caller is not capable of creating a self-reference, because this is content-addressed without modulus
.self = false,
},
};

View File

@@ -209,6 +209,7 @@ struct ProfileManifest
},
.references = {
.others = std::move(references),
// profiles never refer to themselves
.self = false,
},
},