Merge pull request #5896 from Zverik/rating_fix

[style] Fix error with IsHotelChecker
This commit is contained in:
Arsentiy Milchakov 2017-04-24 11:50:43 +03:00 committed by GitHub
commit 776f574236

View file

@ -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;