| 26 | } |
| 27 | |
| 28 | void clear() { |
| 29 | delete [] map_; |
| 30 | map_ = nullptr; |
| 31 | map_size_ = 0; |
| 32 | size_ = 0; |
| 33 | } |
| 34 | |
| 35 | void set(uint32 i) { |
| 36 | map_[i>>kBitmapShift] |= (uint16) (1 << (i&kBitmapMask)); |
nothing calls this directly
no outgoing calls
no test coverage detected