From d3687db3a8eb57ac45fcfc757a98a4bf56a9d1ae Mon Sep 17 00:00:00 2001 From: Joe Thornber Date: Thu, 26 Jun 2014 15:26:39 +0100 Subject: [PATCH] [bloom filter] remove an unused data member --- persistent-data/data-structures/bloom_filter.h | 1 - 1 file changed, 1 deletion(-) 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_;