From 3a3662f29d40daa01dc73adbdcb524315a372def Mon Sep 17 00:00:00 2001 From: Ansis Brammanis Date: Tue, 1 Oct 2019 16:04:14 -0400 Subject: fix --- src/mbgl/renderer/paint_property_binder.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mbgl/renderer/paint_property_binder.hpp b/src/mbgl/renderer/paint_property_binder.hpp index a93bf2e541..db9f61411a 100644 --- a/src/mbgl/renderer/paint_property_binder.hpp +++ b/src/mbgl/renderer/paint_property_binder.hpp @@ -372,8 +372,8 @@ public: std::tuple interpolationFactor(float currentZoom) const override { const float possiblyRoundedZoom = expression.useIntegerZoom ? std::floor(currentZoom) : currentZoom; - return std::tuple { - std::fmax(0.0, std::fmin(1.0, expression.interpolationFactor(zoomRange, possiblyRoundedZoom)))}; + return std::tuple{ + ::fmax(0.0, ::fmin(1.0, expression.interpolationFactor(zoomRange, possiblyRoundedZoom)))}; } std::tuple uniformValue(const PossiblyEvaluatedPropertyValue& currentValue) const override { -- cgit v1.2.1