summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layers/layer.hpp.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/layers/layer.hpp.ejs')
-rw-r--r--include/mbgl/style/layers/layer.hpp.ejs8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/mbgl/style/layers/layer.hpp.ejs b/include/mbgl/style/layers/layer.hpp.ejs
index a7a8ff35c5..8371f11910 100644
--- a/include/mbgl/style/layers/layer.hpp.ejs
+++ b/include/mbgl/style/layers/layer.hpp.ejs
@@ -43,8 +43,8 @@ public:
<% for (const property of layoutProperties) { -%>
static <%- propertyValueType(property) %> getDefault<%- camelize(property.name) %>();
- <%- propertyValueType(property) %> get<%- camelize(property.name) %>() const;
- void set<%- camelize(property.name) %>(<%- propertyValueType(property) %>);
+ const <%- propertyValueType(property) %>& get<%- camelize(property.name) %>() const;
+ void set<%- camelize(property.name) %>(const <%- propertyValueType(property) %>&);
<% } -%>
<% } -%>
@@ -52,8 +52,8 @@ public:
<% for (const property of paintProperties) { -%>
static <%- propertyValueType(property) %> getDefault<%- camelize(property.name) %>();
- <%- propertyValueType(property) %> get<%- camelize(property.name) %>() const;
- void set<%- camelize(property.name) %>(<%- propertyValueType(property) %>);
+ const <%- propertyValueType(property) %>& get<%- camelize(property.name) %>() const;
+ void set<%- camelize(property.name) %>(const <%- propertyValueType(property) %>&);
void set<%- camelize(property.name) %>Transition(const TransitionOptions&);
TransitionOptions get<%- camelize(property.name) %>Transition() const;