rollback to copying bbox member of filter_in_box - previous change led to odd node-mapnik shapefile query failure

This commit is contained in:
Dane Springmeyer 2013-07-16 00:56:45 -04:00
parent 0c82ec6006
commit 72d88cfd79

View file

@ -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<double> const& box_;
box2d<double> box_;
explicit filter_in_box(box2d<double> const& box)
: box_(box) {}