summaryrefslogtreecommitdiff
path: root/src/mbgl/style/property_value.hpp
diff options
context:
space:
mode:
authorAnsis Brammanis <brammanis@gmail.com>2015-01-14 22:24:44 -0500
committerAnsis Brammanis <brammanis@gmail.com>2015-01-14 22:24:44 -0500
commit2c615b613c3f4031cf7d40d37cee7ca5c6c96265 (patch)
tree33adab55791e6803e0c09a51376663739a924877 /src/mbgl/style/property_value.hpp
parent84e9dbdc09043a22d35a3d903dc9b024f1bf23a2 (diff)
downloadqtlocation-mapboxgl-2c615b613c3f4031cf7d40d37cee7ca5c6c96265.tar.gz
support dash arrays that are any length
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;
}