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

Commit 381dda3

Browse files
committed
[build] Fix builds with -pedantic
1 parent f49f2e5 commit 381dda3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/mbgl/style/expression/is_constant.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ bool isGlobalPropertyConstant(const Expression& expression, const T& properties)
1717
}
1818
}
1919
}
20-
20+
2121
bool isConstant = true;
2222
expression.eachChild([&](const Expression& e) {
2323
if (isConstant && !isGlobalPropertyConstant(e, properties)) {
2424
isConstant = false;
2525
}
2626
});
2727
return isConstant;
28-
};
28+
}
2929

3030
bool isFeatureConstant(const Expression& expression);
3131
bool isZoomConstant(const Expression& e);

0 commit comments

Comments
 (0)