From 72d88cfd79ab39b65770b6b66e981e11e6901022 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 16 Jul 2013 00:56:45 -0400 Subject: [PATCH] rollback to copying bbox member of filter_in_box - previous change led to odd node-mapnik shapefile query failure --- include/mapnik/geom_util.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mapnik/geom_util.hpp b/include/mapnik/geom_util.hpp index a0173c4fe..350c797ab 100644 --- a/include/mapnik/geom_util.hpp +++ b/include/mapnik/geom_util.hpp @@ -199,7 +199,7 @@ inline bool point_on_path(double x,double y,Iter start,Iter end, double tol) // filters struct filter_in_box { - box2d const& box_; + box2d box_; explicit filter_in_box(box2d const& box) : box_(box) {}