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.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/style/layer_properties.hpp b/include/mbgl/style/layer_properties.hpp
index c238faf02f..cfcef1ae00 100644
--- a/include/mbgl/style/layer_properties.hpp
+++ b/include/mbgl/style/layer_properties.hpp
@@ -14,7 +14,7 @@ class LayerProperties {
public:
virtual ~LayerProperties() = default;
// Returns constants mask for the data-driven properties.
- virtual unsigned long constantsMask() const { return 0u; }
+ virtual unsigned long constantsMask() const noexcept { return 0u; }
Immutable<Layer::Impl> baseImpl;
protected: