summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/custom_layer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/layers/custom_layer.cpp')
-rw-r--r--src/mbgl/style/layers/custom_layer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/style/layers/custom_layer.cpp b/src/mbgl/style/layers/custom_layer.cpp
index 060e455217..012771ec94 100644
--- a/src/mbgl/style/layers/custom_layer.cpp
+++ b/src/mbgl/style/layers/custom_layer.cpp
@@ -49,12 +49,12 @@ CustomLayerFactory::CustomLayerFactory() {
CustomLayerFactory::~CustomLayerFactory() = default;
// static
-CustomLayerFactory* CustomLayerFactory::get() {
+CustomLayerFactory* CustomLayerFactory::get() noexcept {
assert(instance);
return instance;
}
-bool CustomLayerFactory::supportsType(const std::string&) const {
+bool CustomLayerFactory::supportsType(const std::string&) const noexcept {
return false;
}