forked from organicmaps/organicmaps
Merge pull request #5896 from Zverik/rating_fix
[style] Fix error with IsHotelChecker
This commit is contained in:
commit
776f574236
1 changed files with 1 additions and 2 deletions
|
@ -126,8 +126,7 @@ bool GetBoundingBoxArea(FeatureType const & ft, double & sqM)
|
|||
// Feature tag value evaluator for tag 'rating'
|
||||
bool GetRating(FeatureType const & ft, double & rating)
|
||||
{
|
||||
ftypes::IsHotelChecker hotelChecker;
|
||||
if (!hotelChecker(ft))
|
||||
if (!ftypes::IsHotelChecker::Instance()(ft))
|
||||
return false;
|
||||
|
||||
double constexpr kDefaultRating = 0.0;
|
||||
|
|
Loading…
Add table
Reference in a new issue