diff options
author | eldritch horrors <pennae@lix.systems> | 2024-04-27 21:24:36 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-05-09 23:18:05 +0200 |
commit | 2f4a1dd6e03f3005e1f11dc98dda2d2d214b1f6f (patch) | |
tree | a9c0d70d2c4fa611d4c405ec81ac2b8f9c9bf3cf /src/libstore/local-store.hh | |
parent | c77bd88259dac6e6b7bcb29425905467aa2ef66f (diff) |
libstore: de-callback-ify Store::queryPathInfoUncached
Change-Id: I23a156aaff5328f67ca16ccd85c0ea1711b21e35
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index b8d1f02ab..daf50989c 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -168,8 +168,7 @@ public: StorePathSet queryAllValidPaths() override; - void queryPathInfoUncached(const StorePath & path, - Callback<std::shared_ptr<const ValidPathInfo>> callback) noexcept override; + std::shared_ptr<const ValidPathInfo> queryPathInfoUncached(const StorePath & path) override; void queryReferrers(const StorePath & path, StorePathSet & referrers) override; |