| 23 | void UnsureType::accept0(KDevelop::TypeVisitor* v) const |
| 24 | { |
| 25 | FOREACH_FUNCTION(const IndexedType &type, d_func()->m_types) { |
| 26 | AbstractType::Ptr t = type.abstractType(); |
| 27 | v->visit(t.data()); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | KDevelop::AbstractType* UnsureType::clone() const |
nothing calls this directly
no test coverage detected