fix warning for unused variable
Test Plan: compile Reviewers: dhruba Reviewed By: dhruba CC: leveldb Differential Revision: https://reviews.facebook.net/D7857
This commit is contained in:
parent
85ad13be1a
commit
2ba125faf6
@ -588,10 +588,10 @@ void Version::ExtendOverlappingInputs(
|
||||
assert(user_cmp->Compare(flimit, user_begin) >= 0);
|
||||
}
|
||||
}
|
||||
int count=0;
|
||||
#endif
|
||||
int startIndex = midIndex + 1;
|
||||
int endIndex = midIndex;
|
||||
int count = 0;
|
||||
|
||||
// check backwards from 'mid' to lower indices
|
||||
for (int i = midIndex; i >= 0 ; i--) {
|
||||
|
Loading…
Reference in New Issue
Block a user