aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/store-api.cc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2023-02-02 09:55:07 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2023-02-02 09:55:07 -0500
commit87ca46263dbf88eb8ee606078738bde348689bc6 (patch)
tree82cd4c411bdbb865c4609eb968092b5cf4cc3395 /src/libstore/store-api.cc
parentee9eb83a842eb97d0180fd9d349d30ff27fdb485 (diff)
parent119ba50eb840d812d7175cdc105d9e38dabb5773 (diff)
Merge branch 'master' into path-info
Diffstat (limited to 'src/libstore/store-api.cc')
-rw-r--r--src/libstore/store-api.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc
index 295ce4953..06d746a0b 100644
--- a/src/libstore/store-api.cc
+++ b/src/libstore/store-api.cc
@@ -762,7 +762,7 @@ StorePathSet Store::queryValidPaths(const StorePathSet & paths, SubstituteFlag m
auto doQuery = [&](const StorePath & path) {
checkInterrupt();
- queryPathInfo(path, {[path, this, &state_, &wakeup](std::future<ref<const ValidPathInfo>> fut) {
+ queryPathInfo(path, {[path, &state_, &wakeup](std::future<ref<const ValidPathInfo>> fut) {
auto state(state_.lock());
try {
auto info = fut.get();