summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layout_property.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/layout_property.hpp')
-rw-r--r--src/mbgl/style/layout_property.hpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mbgl/style/layout_property.hpp b/src/mbgl/style/layout_property.hpp
index 0fcad30cc4..7b745e1511 100644
--- a/src/mbgl/style/layout_property.hpp
+++ b/src/mbgl/style/layout_property.hpp
@@ -10,10 +10,7 @@ namespace style {
template <class T>
class LayoutProperty {
public:
- using TransitionableType = std::nullptr_t;
- using UnevaluatedType = PropertyValue<T>;
using EvaluatorType = PropertyEvaluator<T>;
- using PossiblyEvaluatedType = T;
using Type = T;
static constexpr bool IsDataDriven = false;
};
@@ -21,10 +18,7 @@ public:
template <class T>
class DataDrivenLayoutProperty {
public:
- using TransitionableType = std::nullptr_t;
- using UnevaluatedType = PropertyValue<T>;
using EvaluatorType = DataDrivenPropertyEvaluator<T>;
- using PossiblyEvaluatedType = PossiblyEvaluatedPropertyValue<T>;
using Type = T;
static constexpr bool IsDataDriven = true;
};