Skip to content

Commit

Permalink
Fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
igorcanadi committed Sep 22, 2014
1 parent 53b0039 commit 3d74f09
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion table/full_filter_block_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ class TestFilterBitsBuilder : public FilterBitsBuilder {
for (size_t i = 0; i < hash_entries_.size(); i++) {
EncodeFixed32(data + i * 4, hash_entries_[i]);
}
buf->reset(data);
const char* const_data = data;
buf->reset(const_data);
return Slice(data, len);
}

Expand Down

0 comments on commit 3d74f09

Please sign in to comment.