summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/background_layer_properties.cpp
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-07-02 13:32:05 +0300
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-07-02 13:32:05 +0300
commit18c3f70051e04916a089651b75d0ead366e36dae (patch)
treea6559abc58e617e69e360282acf767ec0e4e5eb2 /src/mbgl/style/layers/background_layer_properties.cpp
parentbb5d638dfaf0bab8e89fd285ab5740d55b32a11f (diff)
downloadqtlocation-mapboxgl-upstream/mikhail_fix_layer_paint_properties_update.tar.gz
[core] Make LayerProperties::constantsMask() noexceptupstream/mikhail_fix_layer_paint_properties_update
so that it does not bloat binary size
Diffstat (limited to 'src/mbgl/style/layers/background_layer_properties.cpp')
-rw-r--r--src/mbgl/style/layers/background_layer_properties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/style/layers/background_layer_properties.cpp b/src/mbgl/style/layers/background_layer_properties.cpp
index 63f6a7be68..e259b8609b 100644
--- a/src/mbgl/style/layers/background_layer_properties.cpp
+++ b/src/mbgl/style/layers/background_layer_properties.cpp
@@ -21,7 +21,7 @@ BackgroundLayerProperties::BackgroundLayerProperties(
BackgroundLayerProperties::~BackgroundLayerProperties() = default;
-unsigned long BackgroundLayerProperties::constantsMask() const {
+unsigned long BackgroundLayerProperties::constantsMask() const noexcept {
return evaluated.constantsMask();
}