summaryrefslogtreecommitdiff
path: root/src/mbgl/style/property_expression.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/property_expression.cpp')
-rw-r--r--src/mbgl/style/property_expression.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/mbgl/style/property_expression.cpp b/src/mbgl/style/property_expression.cpp
index 8d603e4b15..290009514e 100644
--- a/src/mbgl/style/property_expression.cpp
+++ b/src/mbgl/style/property_expression.cpp
@@ -40,14 +40,11 @@ float PropertyExpressionBase::interpolationFactor(const Range<float>& inputLevel
Range<float> PropertyExpressionBase::getCoveringStops(const float lower, const float upper) const noexcept {
return zoomCurve.match(
- [](std::nullptr_t) {
+ [](std::nullptr_t) -> Range<float> {
assert(false);
- return Range<float>(0.0f, 0.0f);
+ return {0.0f, 0.0f};
},
- [&](auto z) {
- return z->getCoveringStops(lower, upper);
- }
- );
+ [&](auto z) { return z->getCoveringStops(lower, upper); });
}
const expression::Expression& PropertyExpressionBase::getExpression() const noexcept {