diff --git a/persistent-data/data-structures/bloom_filter.h b/persistent-data/data-structures/bloom_filter.h index cfc1681..da91088 100644 --- a/persistent-data/data-structures/bloom_filter.h +++ b/persistent-data/data-structures/bloom_filter.h @@ -35,7 +35,6 @@ namespace persistent_data { void fill_probes(block_address b, vector &probes) const; tm_ptr tm_; - unsigned nr_bits_; persistent_data::bitset bits_; unsigned nr_probes_; uint64_t mask_;