Fix clang build
Summary: Fix clang build Test Plan: USE_CLANG=1 make check -j64 Subscribers: andrewkr, dhruba Differential Revision: https://reviews.facebook.net/D59667
This commit is contained in:
parent
0babce57f7
commit
8366e10ffc
@ -131,7 +131,7 @@ void BlockIter::Prev() {
|
|||||||
}
|
}
|
||||||
// Loop until end of current entry hits the start of original entry
|
// Loop until end of current entry hits the start of original entry
|
||||||
} while (NextEntryOffset() < original);
|
} while (NextEntryOffset() < original);
|
||||||
prev_entries_idx_ = prev_entries_.size() - 1;
|
prev_entries_idx_ = static_cast<int32_t>(prev_entries_.size()) - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void BlockIter::Seek(const Slice& target) {
|
void BlockIter::Seek(const Slice& target) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user