diff options
author | eldritch horrors <pennae@lix.systems> | 2024-04-27 23:44:12 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-05-09 23:18:05 +0200 |
commit | 17965bf11c55daee81729151f9876e55fdeaf9c1 (patch) | |
tree | b4b7a4ce182e52acf2f8a4cdd6158638dc990162 /src/libstore/legacy-ssh-store.cc | |
parent | 2f4a1dd6e03f3005e1f11dc98dda2d2d214b1f6f (diff) |
libstore: un-callback-ify Store::queryRealisationUncached
Change-Id: I4a328f46eaac3bb8b19ddc091306de83348be9cf
Diffstat (limited to 'src/libstore/legacy-ssh-store.cc')
-rw-r--r-- | src/libstore/legacy-ssh-store.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstore/legacy-ssh-store.cc b/src/libstore/legacy-ssh-store.cc index 5044876cb..23ccfb178 100644 --- a/src/libstore/legacy-ssh-store.cc +++ b/src/libstore/legacy-ssh-store.cc @@ -407,8 +407,7 @@ public: return std::nullopt; } - void queryRealisationUncached(const DrvOutput &, - Callback<std::shared_ptr<const Realisation>> callback) noexcept override + std::shared_ptr<const Realisation> queryRealisationUncached(const DrvOutput &) override // TODO: Implement { unsupported("queryRealisation"); } }; |