| 109 | buffer[bit_index(n)] |= bit_mask(n); |
| 110 | } |
| 111 | void clear_bit(uint n) |
| 112 | { |
| 113 | buffer[bit_index(n)] &= ~bit_mask(n); |
| 114 | } |
| 115 | bool is_set(uint n) const |
| 116 | { |
| 117 | return buffer[bit_index(n)] & bit_mask(n); |
no outgoing calls
no test coverage detected