aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/binary-cache-store.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-10-18 17:48:09 +0200
committerEelco Dolstra <edolstra@gmail.com>2022-10-18 17:48:09 +0200
commite136d57f26155a9f54dfb0ca00212b2016932104 (patch)
tree86c3510b0ad2ce85bb822ce133e1ab009a2e8d53 /src/libstore/binary-cache-store.hh
parent61f89e954af060c8dbdcd5a4fffcf023ac555686 (diff)
Implement BinaryCacheStore::queryPathFromHashPart()
Diffstat (limited to 'src/libstore/binary-cache-store.hh')
-rw-r--r--src/libstore/binary-cache-store.hh3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstore/binary-cache-store.hh b/src/libstore/binary-cache-store.hh
index ca538b3cb..8c82e2387 100644
--- a/src/libstore/binary-cache-store.hh
+++ b/src/libstore/binary-cache-store.hh
@@ -95,8 +95,7 @@ public:
void queryPathInfoUncached(const StorePath & path,
Callback<std::shared_ptr<const ValidPathInfo>> callback) noexcept override;
- std::optional<StorePath> queryPathFromHashPart(const std::string & hashPart) override
- { unsupported("queryPathFromHashPart"); }
+ std::optional<StorePath> queryPathFromHashPart(const std::string & hashPart) override;
void addToStore(const ValidPathInfo & info, Source & narSource,
RepairFlag repair, CheckSigsFlag checkSigs) override;