| 164 | } |
| 165 | |
| 166 | void BloomFilter::Destroy() |
| 167 | { |
| 168 | if (m_own_bitmap) |
| 169 | { |
| 170 | free(m_bitmap); |
| 171 | } |
| 172 | InitialClear(); |
| 173 | } |
| 174 | |
| 175 | void BloomFilter::CheckBitmapSize(size_t byte_size) |
| 176 | { |
nothing calls this directly
no outgoing calls
no test coverage detected