summaryrefslogtreecommitdiff
path: root/src/mbgl/style/property_evaluator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/property_evaluator.hpp')
-rw-r--r--src/mbgl/style/property_evaluator.hpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mbgl/style/property_evaluator.hpp b/src/mbgl/style/property_evaluator.hpp
index dd4960c8ea..81d2c93342 100644
--- a/src/mbgl/style/property_evaluator.hpp
+++ b/src/mbgl/style/property_evaluator.hpp
@@ -3,7 +3,6 @@
#include <mbgl/style/zoom_history.hpp>
#include <mbgl/style/function.hpp>
-#include <mbgl/style/piecewisefunction_properties.hpp>
#include <mbgl/style/style_calculation_parameters.hpp>
namespace mbgl {
@@ -24,10 +23,6 @@ public:
}
T operator()(const Function<T>& value) const {
- return value.evaluate(parameters.z);
- }
-
- T operator()(const PiecewiseConstantFunction<T>& value) const {
return value.evaluate(parameters);
}