| 23 | IndexedTypeIdentifier stripPrefixIdentifiers(const IndexedTypeIdentifier& id, const QualifiedIdentifier& strip); |
| 24 | |
| 25 | Identifier stripPrefixIdentifiers(const Identifier& id, const QualifiedIdentifier& strip) |
| 26 | { |
| 27 | Identifier ret(id); |
| 28 | ret.clearTemplateIdentifiers(); |
| 29 | for (unsigned int a = 0; a < id.templateIdentifiersCount(); ++a) { |
| 30 | ret.appendTemplateIdentifier(stripPrefixIdentifiers(id.templateIdentifier(a), strip)); |
| 31 | } |
| 32 | |
| 33 | return ret; |
| 34 | } |
| 35 | |
| 36 | IndexedTypeIdentifier stripPrefixIdentifiers(const IndexedTypeIdentifier& id, const QualifiedIdentifier& strip) |
| 37 | { |
no test coverage detected