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.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mbgl/style/paint_property.hpp b/src/mbgl/style/paint_property.hpp
index 58de3354fb..343e689a32 100644
--- a/src/mbgl/style/paint_property.hpp
+++ b/src/mbgl/style/paint_property.hpp
@@ -34,9 +34,9 @@ public:
static constexpr bool IsDataDriven = true;
using Attribute = A;
- using Attributes = TypeList<A>;
+ using AttributeList = TypeList<A>;
using Uniform = U;
- using Uniforms = TypeList<U>;
+ using UniformList = TypeList<U>;
};
template <class T, class A1, class U1, class A2, class U2>
@@ -50,9 +50,9 @@ public:
static constexpr bool IsDataDriven = true;
using Attribute = A1;
- using Attributes = TypeList<A1, A2>;
- using Uniforms = TypeList<U1, U2>;
+ using AttributeList = TypeList<A1, A2>;
using Uniform = U1;
+ using UniformList = TypeList<U1, U2>;
};
template <class T>