| 78 | } |
| 79 | |
| 80 | BloomFilter::BloomFilter(const std::string &path_, int64_t maxItems, double fpRate) : path(path_), impData(loadData(metaPath(), maxItems, fpRate)), store(storePath().str(), impData.length) {} |
| 81 | |
| 82 | BloomFilter::~BloomFilter() { |
| 83 | std::ofstream file(metaPath().str(), std::ios::binary); |
nothing calls this directly
no test coverage detected