diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-30T19·43-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-30T19·43-0400 |
commit | f9613da18033d0a9835bc57ac2142aca754983cf (patch) | |
tree | 932030f0ee2e20983e985b2f40f38dfb1719964d /src | |
parent | 6183cf2f197edd079a0134ccb8d320bab083a624 (diff) |
Remove unused variables
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/local-store.cc | 2 | ||||
-rw-r--r-- | src/libstore/local-store.hh | 3 |
2 files changed, 0 insertions, 5 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index d6bb78f7ab12..023bf417e59a 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -198,8 +198,6 @@ void checkStoreNotSymlink() LocalStore::LocalStore(bool reserveSpace) { - substitutablePathsLoaded = false; - schemaPath = nixDBPath + "/schema"; if (readOnlyMode) { diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index 15dff1d02052..4761658ed830 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -80,9 +80,6 @@ struct SQLiteStmt class LocalStore : public StoreAPI { private: - bool substitutablePathsLoaded; - PathSet substitutablePaths; - typedef std::map<Path, RunningSubstituter> RunningSubstituters; RunningSubstituters runningSubstituters; |