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:
Mark Callaghan 2013-01-11 10:57:50 -08:00
parent 85ad13be1a
commit 2ba125faf6

View File

@ -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--) {