| 48 | void set_all() { bitmap_set_all(&map); } |
| 49 | void clear_all() { bitmap_clear_all(&map); } |
| 50 | void intersect(const Bitmap& map2) { bitmap_intersect(&map, &map2.map); } |
| 51 | void intersect(ulonglong map2buff) |
| 52 | { |
| 53 | MY_BITMAP map2; |
nothing calls this directly
no test coverage detected