From 8a4ba70c48464081a3f268f434d8d68d531e419e Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 2 Dec 2011 13:38:10 -0800 Subject: [PATCH] python: remove unneeded header for mapnik_feature.cpp --- bindings/python/mapnik_feature.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/python/mapnik_feature.cpp b/bindings/python/mapnik_feature.cpp index 3abe6d703..de7595ff1 100644 --- a/bindings/python/mapnik_feature.cpp +++ b/bindings/python/mapnik_feature.cpp @@ -34,7 +34,6 @@ #include #include #include -#include "mapnik_value_converter.hpp" mapnik::geometry_type & (mapnik::Feature::*get_geom1)(unsigned) = &mapnik::Feature::get_geometry; @@ -59,7 +58,7 @@ void feature_add_geometries_from_wkt(Feature &feature, std::string wkt) namespace boost { namespace python { -// Forward declaration + // Forward declaration template class map_indexing_suite2; @@ -109,6 +108,7 @@ namespace boost { namespace python { PyErr_SetString(PyExc_KeyError, "Invalid key"); throw_error_already_set(); } + // will be auto-converted to proper python type by `mapnik_value_to_python` return i->second; }