| 281 | } |
| 282 | |
| 283 | SuburbType IsSuburbChecker::GetType(uint32_t t) const |
| 284 | { |
| 285 | ftype::TruncValue(t, 2); |
| 286 | for (size_t i = 0; i < m_types.size(); ++i) |
| 287 | if (m_types[i] == t) |
| 288 | return static_cast<SuburbType>(i); |
| 289 | return SuburbType::Count; |
| 290 | } |
| 291 | |
| 292 | SuburbType IsSuburbChecker::GetType(feature::TypesHolder const & types) const |
| 293 | { |
no test coverage detected