| 57 | } |
| 58 | |
| 59 | uint32_t IndexAndTypeMapping::GetIndex(uint32_t t) const |
| 60 | { |
| 61 | Map::const_iterator i = m_map.find(t); |
| 62 | /// @todo Should review each call of Classificator::GetIndexForType (see also IsTypeValid), |
| 63 | /// because this situation is possible for deleted dummy types in old maps data. |
| 64 | CHECK(i != m_map.end(), (t, classif().GetFullObjectName(t))); |
| 65 | return i->second; |
| 66 | } |
no test coverage detected