Remove lock

Former-commit-id: bb8efe2ed942fd67d091b16bb27f67ccefcbbf19
This commit is contained in:
John Sully 2021-06-14 03:50:47 +00:00
parent 6bf9bf1979
commit 6116c9bf5e

View File

@ -45,11 +45,11 @@ public:
bool enumerate(IStorage::callback fn) const { return m_spstorage->enumerate(fn); }
void beginWriteBatch();
void endWriteBatch() { m_spstorage->endWriteBatch(); m_lock.unlock(); }
void endWriteBatch() { m_spstorage->endWriteBatch(); }
void batch_lock() { return m_spstorage->batch_lock(); }
void batch_unlock() { return m_spstorage->batch_unlock(); }
size_t count() const;
const StorageCache *clone();
};
};