Skip to content

Commit

Permalink
Removing unused variables to fix build
Browse files Browse the repository at this point in the history
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
  • Loading branch information
4tXJ7f committed Aug 19, 2015
1 parent 1b114ee commit b604d25
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion db/forward_iterator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
1 change: 0 additions & 1 deletion db/forward_iterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_;
Expand Down

0 comments on commit b604d25

Please sign in to comment.