Mark the protocol at @a idx as present.
| 75 | |
| 76 | /// Mark the protocol at @a idx as present. |
| 77 | void |
| 78 | markIn(int idx) |
| 79 | { |
| 80 | m_bits |= this->indexToMask(idx); |
| 81 | } |
| 82 | |
| 83 | /// Mark all the protocols in @a that as present in @a this. |
| 84 | void |
nothing calls this directly
no test coverage detected