diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-04-03 15:36:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-03 15:36:33 +0200 |
commit | ac4318a1b9e7349051088e40d3a3efa18f2cc782 (patch) | |
tree | 133b71d0b9eca14b8849361756464077cab24516 /src/libstore/store-api.hh | |
parent | 70bb7b72890b962d644411a6f74f8002033b7b5d (diff) | |
parent | 9383520b755af3f496f7ecb562d10575367e274d (diff) |
Merge pull request #8152 from obsidiansystems/move-querySubstitutablePathInfos
Move `querySubstitutablePathInfos` from `LocalStore` to `Store`
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r-- | src/libstore/store-api.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index 58d7b848e..4d1047380 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -456,7 +456,7 @@ public: * resulting ‘infos’ map. */ virtual void querySubstitutablePathInfos(const StorePathCAMap & paths, - SubstitutablePathInfos & infos) { return; }; + SubstitutablePathInfos & infos); /** * Import a path into the store. |