summaryrefslogtreecommitdiff
path: root/src/mbgl/style/paint_property.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/paint_property.hpp')
-rw-r--r--src/mbgl/style/paint_property.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mbgl/style/paint_property.hpp b/src/mbgl/style/paint_property.hpp
index 7d398748f2..76a62f3946 100644
--- a/src/mbgl/style/paint_property.hpp
+++ b/src/mbgl/style/paint_property.hpp
@@ -41,7 +41,7 @@ public:
using UniformList = TypeList<U>;
};
-template <class T, class A1, class U1, class A2, class U2>
+template <class T, class A1, class U1, class A2, class U2, class A3, class U3, class A4, class U4>
class CrossFadedDataDrivenPaintProperty {
public:
using TransitionableType = Transitionable<PropertyValue<T>>;
@@ -53,9 +53,9 @@ public:
static constexpr bool IsOverridable = false;
using Attribute = A1;
- using AttributeList = TypeList<A1, A2>;
+ using AttributeList = TypeList<A1, A2, A3, A4>;
using Uniform = U1;
- using UniformList = TypeList<U1, U2>;
+ using UniformList = TypeList<U1, U2, U3, U4>;
};
template <class T>