[search] Fixed the build.

This commit is contained in:
Maxim Pimenov 2019-06-13 17:33:05 +03:00 committed by Tatiana Yan
parent 615194d476
commit 3b8f9fc6b1

View file

@ -181,8 +181,9 @@ void InitStorageData(storage::Affiliations & affiliations,
auto const countriesFile = base::JoinPath(GetPlatform().ResourcesDir(), COUNTRIES_FILE);
storage::CountryTree countries;
auto const rv =
storage::LoadCountriesFromFile(countriesFile, countries, affiliations, countryNameSynonyms);
storage::MwmTopCityGeoIds mwmTopCityGeoIds;
auto const rv = storage::LoadCountriesFromFile(COUNTRIES_FILE, countries, affiliations,
countryNameSynonyms, mwmTopCityGeoIds);
CHECK(rv != -1, ("Can't load countries from:", countriesFile));
}