summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layers/fill_layer.hpp
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2018-11-06 16:48:18 +0200
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2018-11-07 13:52:00 +0200
commitf32501e9b786a8f832070b060ea3fa0071b8956c (patch)
treeea4ac754f100303760c0120e25474eaba0ab7b66 /include/mbgl/style/layers/fill_layer.hpp
parentd036acefda5cf8beebbb61e490b450e183cca103 (diff)
downloadqtlocation-mapboxgl-upstream/mikhail_refactor_layers_android.tar.gz
noexcept specifier for layer factory methodsupstream/mikhail_refactor_layers_android
Diffstat (limited to 'include/mbgl/style/layers/fill_layer.hpp')
-rw-r--r--include/mbgl/style/layers/fill_layer.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mbgl/style/layers/fill_layer.hpp b/include/mbgl/style/layers/fill_layer.hpp
index 7ef6727691..aeb0ba988a 100644
--- a/include/mbgl/style/layers/fill_layer.hpp
+++ b/include/mbgl/style/layers/fill_layer.hpp
@@ -85,10 +85,10 @@ public:
FillLayerFactory();
// LayerFactory overrides.
~FillLayerFactory() override;
- bool supportsType(const std::string& type) const final;
+ bool supportsType(const std::string& type) const noexcept final;
std::unique_ptr<style::Layer> createLayer(const std::string& id, const conversion::Convertible& value) final;
- static FillLayerFactory* get();
+ static FillLayerFactory* get() noexcept;
private:
static FillLayerFactory* instance;