diff options
author | zmiao <miao.zhao@mapbox.com> | 2020-02-11 14:40:51 +0200 |
---|---|---|
committer | zmiao <miao.zhao@mapbox.com> | 2020-02-12 12:24:05 +0200 |
commit | 7fda6ecad3e1119995b1bb23257995f730ac2a23 (patch) | |
tree | 04b4afd335d21b3c49ca4c05b92db6d623af8468 /include | |
parent | 4579e1d6c4cd01b1d1d0d5f7dfc44c2d2e6ec686 (diff) | |
download | qtlocation-mapboxgl-7fda6ecad3e1119995b1bb23257995f730ac2a23.tar.gz |
reserve vecotr capacity, fix for points within polygon
Address review findings/nit
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/style/expression/within.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/style/expression/within.hpp b/include/mbgl/style/expression/within.hpp index 5cc36ab19c..7e4050509d 100644 --- a/include/mbgl/style/expression/within.hpp +++ b/include/mbgl/style/expression/within.hpp @@ -15,7 +15,7 @@ class Within final : public Expression { public: explicit Within(GeoJSON geojson); - ~Within() final; + ~Within() override; EvaluationResult evaluate(const EvaluationContext&) const override; |