From 12be3e5a3299c2a99f2151ba103c14600907fceb Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Fri, 25 Mar 2016 13:21:32 -0700 Subject: [PATCH] This one really is an int upstream --- tile-join.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tile-join.cc b/tile-join.cc index c5c6c5b..25794ce 100644 --- a/tile-join.cc +++ b/tile-join.cc @@ -311,7 +311,7 @@ void handle(std::string message, int z, unsigned x, unsigned y, struct pool **fi mapnik::vector::tile_feature *outfeature = outlayer->add_features(); outfeature->set_type(feat.type()); - for (size_t g = 0; g < feat.geometry_size(); g++) { + for (int g = 0; g < feat.geometry_size(); g++) { outfeature->add_geometry(feat.geometry(g)); }