| 102 | base::reset(pos); |
| 103 | } |
| 104 | bool test(size_t pos) const |
| 105 | { |
| 106 | if (pos >= N) |
| 107 | { |
| 108 | __msl_error("index out of range of bitset::test"); |
| 109 | } |
| 110 | return base::test(pos); |
| 111 | } |
| 112 | |
| 113 | }; |
| 114 | } // namespace std |
nothing calls this directly
no test coverage detected