| 67 | return *this; |
| 68 | } |
| 69 | void Add(int val) { |
| 70 | assert(val >= 0); |
| 71 | assert(val < size); |
| 72 | bset[val] = true; |
| 73 | } |
| 74 | void AddString(const char *setToAdd) { |
| 75 | for (const char *cp=setToAdd; *cp; cp++) { |
| 76 | int val = static_cast<unsigned char>(*cp); |
nothing calls this directly
no outgoing calls
no test coverage detected