| 506 | } |
| 507 | |
| 508 | bool EditableMapObject::CheckHouseNumberWhenIsAddress() const |
| 509 | { |
| 510 | // House number is mandatory for the address type. For other types it's optional. |
| 511 | return !m_houseNumber.empty() || !m_types.Has(classif().GetTypeByReadableObjectName("building-address")); |
| 512 | } |
| 513 | |
| 514 | // static |
| 515 | bool EditableMapObject::ValidateFlats(string const & flats) |
no test coverage detected