diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2016-10-07T17·20+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2016-10-07T17·20+0200 |
commit | c663b84573edee2c5ece78f4ee269be73ac3ca35 (patch) | |
tree | 652d8fd54ab1dac920da95390a0727f147c53c7c /src/libstore/store-api.hh | |
parent | 35db4f65a0f2ccbcaaef719e52b895fa78cad361 (diff) |
Implement generic Store::queryValidPaths()
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 b876ffbba765..ce1583b0c6fa 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -306,7 +306,7 @@ protected: public: /* Query which of the given paths is valid. */ - virtual PathSet queryValidPaths(const PathSet & paths) = 0; + virtual PathSet queryValidPaths(const PathSet & paths); /* Query the set of all valid paths. Note that for some store backends, the name part of store paths may be omitted |