Mark the protocol at a idx as not present.
| 88 | } |
| 89 | /// Mark the protocol at a idx as not present. |
| 90 | void |
| 91 | markOut(int idx) |
| 92 | { |
| 93 | m_bits &= ~this->indexToMask(idx); |
| 94 | } |
| 95 | /// Mark the protocols in @a that as not in @a this. |
| 96 | void |
| 97 | markOut(self_type const &that) |
no test coverage detected