diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-25T16·48+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-25T16·48+0100 |
commit | 24a8f9e27bfe63d83cc7ef47c6f133904567d44e (patch) | |
tree | ffaf046d18ea435899a87cdb684f26726a554238 /src/libstore/local-store.hh | |
parent | c5bc57186192277b42746bbfba7bb799d9246da3 (diff) | |
parent | 1042c10fd0417fe33dd879317f5d7a73aa6f7fe3 (diff) |
Merge branch 'master' into new-cli
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index 5582acd0f72f..fded63ab38e1 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -80,7 +80,7 @@ struct SQLiteStmt }; -class LocalStore : public Store +class LocalStore : public LocalFSStore { private: typedef std::map<Path, RunningSubstituter> RunningSubstituters; @@ -170,14 +170,11 @@ public: files with the same contents. */ void optimiseStore(OptimiseStats & stats); - /* Generic variant of the above method. */ void optimiseStore() override; /* Optimise a single store path. */ void optimisePath(const Path & path); - /* Check the integrity of the Nix store. Returns true if errors - remain. */ bool verifyStore(bool checkContents, bool repair) override; /* Register the validity of a path, i.e., that `path' exists, that |