summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorzmiao <miao.zhao@mapbox.com>2020-03-13 20:02:18 +0200
committerzmiao <miao.zhao@mapbox.com>2020-03-19 14:40:49 +0200
commitdf79b0517844d7d24aa9b24968901e7d927751aa (patch)
tree2de1afebfc997964231c1235e8b8dcd4429b7184 /include
parent6989ee6e037ee4f777ee1b1aea3156696c0501dc (diff)
downloadqtlocation-mapboxgl-df79b0517844d7d24aa9b24968901e7d927751aa.tar.gz
[core] Using TileCoordinates for geometry comparison
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/style/expression/within.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/mbgl/style/expression/within.hpp b/include/mbgl/style/expression/within.hpp
index eb23c7d0e0..a8e45f9bf0 100644
--- a/include/mbgl/style/expression/within.hpp
+++ b/include/mbgl/style/expression/within.hpp
@@ -11,7 +11,7 @@ namespace expression {
class Within final : public Expression {
public:
- explicit Within(GeoJSON geojson, Feature::geometry_type geometries_, const WithinBBox& polygonBBox_);
+ explicit Within(GeoJSON geojson, Feature::geometry_type geometries_);
~Within() override;
@@ -31,7 +31,6 @@ public:
private:
GeoJSON geoJSONSource;
Feature::geometry_type geometries;
- WithinBBox polygonBBox;
};
} // namespace expression