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, 4 insertions, 1 deletions
diff --git a/src/mbgl/style/property_value.hpp b/src/mbgl/style/property_value.hpp
index 1b22b31177..b6ebcf3f69 100644
--- a/src/mbgl/style/property_value.hpp
+++ b/src/mbgl/style/property_value.hpp
@@ -5,6 +5,8 @@
#include <mbgl/style/function_properties.hpp>
#include <mbgl/style/types.hpp>
+#include <vector>
+
namespace mbgl {
typedef mapbox::util::variant<
@@ -13,7 +15,8 @@ typedef mapbox::util::variant<
RotateAnchorType,
Function<bool>,
Function<float>,
- Function<Color>
+ Function<Color>,
+ std::vector<float>
> PropertyValue;
}