| 47 | } |
| 48 | |
| 49 | void PointerType::accept0(TypeVisitor* v) const |
| 50 | { |
| 51 | if (v->visit(this)) |
| 52 | acceptType(d_func()->m_baseType.abstractType(), v); |
| 53 | |
| 54 | v->endVisit(this); |
| 55 | } |
| 56 | |
| 57 | void PointerType::exchangeTypes(TypeExchanger* exchanger) |
| 58 | { |
nothing calls this directly
no test coverage detected