| 240 | } |
| 241 | |
| 242 | bool BuildPostcodePoints(std::string const & path, storage::CountryId const & country, PostcodePointsDatasetType type, |
| 243 | std::string const & datasetPath, bool forceRebuild) |
| 244 | { |
| 245 | auto const & platform = GetPlatform(); |
| 246 | auto const infoGetter = storage::CountryInfoReader::CreateCountryInfoGetter(platform); |
| 247 | CHECK(infoGetter, ()); |
| 248 | return BuildPostcodePointsWithInfoGetter(path, country, type, datasetPath, forceRebuild, *infoGetter); |
| 249 | } |
| 250 | |
| 251 | } // namespace indexer |
no test coverage detected