| 53 | } |
| 54 | |
| 55 | void FillOsmIdToFeatureIdsMap(std::string const & osmIdToFeatureIdsPath, OsmIdToFeatureIdsMap & mapping) |
| 56 | { |
| 57 | CHECK(ForEachOsmId2FeatureId(osmIdToFeatureIdsPath, [&mapping](auto const & compositeId, auto featureId) |
| 58 | { mapping[compositeId.m_mainId].push_back(featureId); }), |
| 59 | (osmIdToFeatureIdsPath)); |
| 60 | } |
| 61 | |
| 62 | std::string GetMwmPath(std::string const & mwmDir, CountryId const & countryId) |
| 63 | { |
no test coverage detected