summaryrefslogtreecommitdiff
path: root/src/mbgl/style/property_value.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/property_value.hpp')
-rw-r--r--src/mbgl/style/property_value.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mbgl/style/property_value.hpp b/src/mbgl/style/property_value.hpp
index 60ddb7fc7a..8d6b95753c 100644
--- a/src/mbgl/style/property_value.hpp
+++ b/src/mbgl/style/property_value.hpp
@@ -4,7 +4,6 @@
#include <mapbox/variant.hpp>
#include <mbgl/style/function.hpp>
-#include <mbgl/style/piecewisefunction_properties.hpp>
#include <mbgl/style/types.hpp>
#include <vector>
@@ -28,8 +27,8 @@ typedef mapbox::util::variant<
Function<bool>,
Function<float>,
Function<Color>,
- PiecewiseConstantFunction<Faded<std::vector<float>>>,
- PiecewiseConstantFunction<Faded<std::string>>
+ Function<Faded<std::vector<float>>>,
+ Function<Faded<std::string>>
> PropertyValue;
}