Removing unused variables to fix build

Summary: Removing two unused variables that prevented compilation.

Test Plan: make all

Reviewers: rven, sdong, yhchiang, anthony, igor

Reviewed By: igor

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D44991
This commit is contained in:
Andres Noetzli 2015-08-19 16:57:40 -07:00
parent 1b114eed4d
commit b604d2562f
2 changed files with 0 additions and 2 deletions

View file

@ -646,7 +646,6 @@ void ForwardIterator::DeleteCurrentIter() {
}
for (int32_t level = 1; level < vstorage->num_levels(); ++level) {
const std::vector<FileMetaData*>& level_files = vstorage->LevelFiles(level);
if (level_iters_[level - 1] == nullptr) {
continue;
}

View file

@ -104,7 +104,6 @@ class ForwardIterator : public Iterator {
Status immutable_status_;
bool valid_;
bool has_iter_trimmed_for_upper_bound_;
bool has_iter_filtered_by_range_;
Slice smallest_file_key_bound;
IterKey prev_key_;