| 80 | } |
| 81 | |
| 82 | AbstractType::~AbstractType() |
| 83 | { |
| 84 | if (!d_ptr->inRepository) { |
| 85 | TypeSystem::self().callDestructor(d_ptr); |
| 86 | delete[] ( char* )d_ptr; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | void AbstractType::accept(TypeVisitor* v) const |
| 91 | { |
nothing calls this directly
no test coverage detected