| 32 | } |
| 33 | |
| 34 | IndexedInstantiationInformation SpecializationStore::get(const DeclarationId& declaration) |
| 35 | { |
| 36 | QHash<DeclarationId, IndexedInstantiationInformation>::const_iterator it = m_specializations.constFind(declaration); |
| 37 | if (it != m_specializations.constEnd()) |
| 38 | return *it; |
| 39 | else |
| 40 | return IndexedInstantiationInformation(); |
| 41 | } |
| 42 | |
| 43 | void SpecializationStore::clear(const DeclarationId& declaration) |
| 44 | { |
no test coverage detected