| 22 | }; |
| 23 | |
| 24 | bool IsMwmContained(platform::CountryFile const & mwm, CountrySetT const & countryList) |
| 25 | { |
| 26 | return std::any_of(countryList.cbegin(), countryList.cend(), |
| 27 | [&mwm](auto const & country) { return mwm.GetName().starts_with(country); }); |
| 28 | } |
| 29 | } // namespace |
| 30 | |
| 31 | namespace routing |
no test coverage detected