1
0
Fork 0

removed unused private field

This commit is contained in:
jsteemann 2017-05-10 11:04:03 +02:00
parent 3d9f85aca6
commit e85cadb90d
2 changed files with 0 additions and 2 deletions

View File

@ -116,7 +116,6 @@ RocksDBAllIndexIterator::RocksDBAllIndexIterator(
LogicalCollection* collection, transaction::Methods* trx,
ManagedDocumentResult* mmdr, RocksDBPrimaryIndex const* index, bool reverse)
: IndexIterator(collection, trx, mmdr, index),
_cmp(index->_cmp),
_reverse(reverse),
_bounds(RocksDBKeyBounds::PrimaryIndex(index->objectId())) {
// acquire rocksdb transaction

View File

@ -93,7 +93,6 @@ class RocksDBAllIndexIterator final : public IndexIterator {
void seek(StringRef const& key);
private:
RocksDBComparator const* _cmp;
bool const _reverse;
std::unique_ptr<rocksdb::Iterator> _iterator;
RocksDBKeyBounds _bounds;