| 1243 | } |
| 1244 | |
| 1245 | void IndexedTypeIdentifier::setIsConstPointer(int depthNumber, bool constant) |
| 1246 | { |
| 1247 | if (constant) |
| 1248 | m_pointerConstMask |= (1 << depthNumber); |
| 1249 | else |
| 1250 | m_pointerConstMask &= (~(1 << depthNumber)); |
| 1251 | } |
| 1252 | |
| 1253 | QString IndexedTypeIdentifier::toString(IdentifierStringFormattingOptions options) const |
| 1254 | { |
no outgoing calls
no test coverage detected