| 86 | bitset() {} |
| 87 | bool any() const { return base::any(); } |
| 88 | void set(size_t pos, bool val) |
| 89 | { |
| 90 | if (pos >= N) |
| 91 | { |
| 92 | __msl_error("index out of range of bitset::set"); |
| 93 | } |
| 94 | base::set(pos, val); |
| 95 | } |
| 96 | void reset(size_t pos) |
| 97 | { |
| 98 | if (pos >= N) |
nothing calls this directly
no test coverage detected