diff options
Diffstat (limited to 'src/libstore/store.hh')
-rw-r--r-- | src/libstore/store.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/store.hh b/src/libstore/store.hh index 143cad8dbe7a..571d498c362d 100644 --- a/src/libstore/store.hh +++ b/src/libstore/store.hh @@ -48,6 +48,9 @@ Paths querySubstitutes(const Path & srcPath); /* Register the validity of a path. */ void registerValidPath(const Transaction & txn, const Path & path); +/* Throw an exception if `path' is not directly in the Nix store. */ +void assertStorePath(const Path & path); + /* Checks whether a path is valid. */ bool isValidPath(const Path & path); |