summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layer_properties.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/layer_properties.hpp')
-rw-r--r--include/mbgl/style/layer_properties.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mbgl/style/layer_properties.hpp b/include/mbgl/style/layer_properties.hpp
index 301a048e50..c238faf02f 100644
--- a/include/mbgl/style/layer_properties.hpp
+++ b/include/mbgl/style/layer_properties.hpp
@@ -13,7 +13,8 @@ namespace style {
class LayerProperties {
public:
virtual ~LayerProperties() = default;
-
+ // Returns constants mask for the data-driven properties.
+ virtual unsigned long constantsMask() const { return 0u; }
Immutable<Layer::Impl> baseImpl;
protected: