forked from organicmaps/organicmaps
Merge pull request #4957 from therearesomewhocallmetim/fix_nullptr
Fixes compilation on Linux.
This commit is contained in:
commit
da713d5c05
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ UNIT_TEST(GarbadgeInputToResponseParser)
|
|||
|
||||
UNIT_TEST(OnlineAbsentFetcherSingleMwmTest)
|
||||
{
|
||||
OnlineAbsentCountriesFetcher fetcher([](m2::PointD const & p){return "A";}, [](string const &){return nullptr;});
|
||||
OnlineAbsentCountriesFetcher fetcher([](m2::PointD const & p){return "A";}, [](string const &){return false;});
|
||||
fetcher.GenerateRequest({1, 1}, {2, 2});
|
||||
vector<string> countries;
|
||||
fetcher.GetAbsentCountries(countries);
|
||||
|
|
Loading…
Add table
Reference in a new issue