diff options
author | Kevin Li <kevin.li@mapbox.com> | 2020-02-15 17:36:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-15 17:36:57 +0800 |
commit | 02274e76019bcfb938f50cdb638eca49c33de786 (patch) | |
tree | ed472d6d3eb511a51bd9fcd2fb568b96976aafd7 /include/mbgl/style/expression/expression.hpp | |
parent | 59294aaef333bdd455bd13d6bab6fca730379b52 (diff) | |
download | qtlocation-mapboxgl-02274e76019bcfb938f50cdb638eca49c33de786.tar.gz |
[core] Implement 'in' expression. (#16162)
* Implement in.cpp
* Fix review comments.
* Add expression_equality test for 'in'
* Fix review comments.
* [core] Update changelog.
* [core] Update mapbox-gl-js
* [core] Ignore render-tests/debug/padding
* [core] Update baseline.
Diffstat (limited to 'include/mbgl/style/expression/expression.hpp')
-rw-r--r-- | include/mbgl/style/expression/expression.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mbgl/style/expression/expression.hpp b/include/mbgl/style/expression/expression.hpp index 0fd5c4959e..e522821185 100644 --- a/include/mbgl/style/expression/expression.hpp +++ b/include/mbgl/style/expression/expression.hpp @@ -168,6 +168,7 @@ enum class Kind : int32_t { FormatSectionOverride, NumberFormat, ImageExpression, + In, Within }; |