From 3b8f9fc6b1710c6a26a56fb51ff095ad91342ce7 Mon Sep 17 00:00:00 2001 From: Maxim Pimenov Date: Thu, 13 Jun 2019 17:33:05 +0300 Subject: [PATCH] [search] Fixed the build. --- search/search_quality/helpers.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/search/search_quality/helpers.cpp b/search/search_quality/helpers.cpp index 8289038e74..7012190091 100644 --- a/search/search_quality/helpers.cpp +++ b/search/search_quality/helpers.cpp @@ -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)); }