Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
Fix noexcept usage in fill and line layer factories
Browse files Browse the repository at this point in the history
  • Loading branch information
ahk committed Oct 22, 2019
1 parent 69c00f5 commit ec31f15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mbgl/layout/pattern_layout.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class PatternLayout : public Layout {
~PatternLayout() final = default;

template <class SortKeyPropertyType>
void maybeApplySortKey() {
void maybeApplySortKey() noexcept {
bool sortFeaturesByKey = !unevaluatedLayout.template get<SortKeyPropertyType>().isUndefined();
if (sortFeaturesByKey) {
for (auto& feature : features) {
Expand Down

0 comments on commit ec31f15

Please sign in to comment.