| 94 | base::set(pos, val); |
| 95 | } |
| 96 | void reset(size_t pos) |
| 97 | { |
| 98 | if (pos >= N) |
| 99 | { |
| 100 | __msl_error("index out of range of bitset::reset"); |
| 101 | } |
| 102 | base::reset(pos); |
| 103 | } |
| 104 | bool test(size_t pos) const |
| 105 | { |
| 106 | if (pos >= N) |
nothing calls this directly
no test coverage detected