| 72 | }; |
| 73 | |
| 74 | bool IsNoNameNoAddressBuilding(FeatureParams const & params) |
| 75 | { |
| 76 | static uint32_t const buildingType = classif().GetTypeByPath({"building"}); |
| 77 | return params.m_types.size() == 1 && params.m_types[0] == buildingType && params.house.Get().empty() && |
| 78 | params.name.IsEmpty(); |
| 79 | } |
| 80 | |
| 81 | bool Prefix2Double(std::string const & str, double & d) |
| 82 | { |
no test coverage detected