From f1ac757bd28351fd57113a1e16f6c2e00ab193c1 Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Tue, 11 Jul 2017 15:11:14 +0300 Subject: [core] GCC 4.9 does not fully support custom variable templates --- include/mbgl/style/function/composite_function.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/mbgl/style/function/composite_function.hpp') diff --git a/include/mbgl/style/function/composite_function.hpp b/include/mbgl/style/function/composite_function.hpp index 43599cd333..7b524b6021 100644 --- a/include/mbgl/style/function/composite_function.hpp +++ b/include/mbgl/style/function/composite_function.hpp @@ -24,7 +24,7 @@ template class CompositeFunction { public: using InnerStops = std::conditional_t< - util::Interpolatable, + util::Interpolatable::value, variant< ExponentialStops, IntervalStops, @@ -34,7 +34,7 @@ public: CategoricalStops>>; using Stops = std::conditional_t< - util::Interpolatable, + util::Interpolatable::value, variant< CompositeExponentialStops, CompositeIntervalStops, -- cgit v1.2.1