diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-11-09 15:57:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 15:57:39 +0100 |
commit | 67179472dfe30c97af9a5aeed0190c0e765936cf (patch) | |
tree | 8062dace9a6fec19a6095a13fc844ff8601313e4 /src/libstore/local-store.hh | |
parent | 884ef336c4bf838d853056d8abb926a71786afa6 (diff) | |
parent | 0b005bc9d67b3f621bc78e5ecb2cd834172d5563 (diff) |
Merge pull request #5494 from tweag/balsoft/allow-references-in-addPath
Allow references in addPath
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index 301425eb1..7ddb1490f 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -145,7 +145,7 @@ public: RepairFlag repair, CheckSigsFlag checkSigs) override; StorePath addToStoreFromDump(Source & dump, const string & name, - FileIngestionMethod method, HashType hashAlgo, RepairFlag repair) override; + FileIngestionMethod method, HashType hashAlgo, RepairFlag repair, const StorePathSet & references) override; StorePath addTextToStore(const string & name, const string & s, const StorePathSet & references, RepairFlag repair) override; |