Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
JiayuZzz committed Jul 11, 2019
1 parent df4af44 commit 78fbc05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blob_file_iterator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ void BlobFileMergeIterator::Next() {
assert(current_ != nullptr);
current_->Next();
if (current_->status().ok() && current_->Valid()) min_heap_.push(current_);
if(!min_heap_.empty()) {
if (!min_heap_.empty()) {
current_ = min_heap_.top();
min_heap_.pop();
}
Expand Down

0 comments on commit 78fbc05

Please sign in to comment.