From adcce7102d54b35238a27cc72bdca8563580ab6d Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 24 Feb 2012 16:14:02 -0800 Subject: [PATCH] be explicit to avoid compile error if includes change --- bindings/python/mapnik_text_placement.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/mapnik_text_placement.cpp b/bindings/python/mapnik_text_placement.cpp index 54ebf2653..2a566d588 100644 --- a/bindings/python/mapnik_text_placement.cpp +++ b/bindings/python/mapnik_text_placement.cpp @@ -54,7 +54,7 @@ normal functions taking a ref to the class as first parameter. namespace { using namespace boost::python; -tuple get_displacement(text_symbolizer_properties const& t) +boost::python::tuple get_displacement(text_symbolizer_properties const& t) { return boost::python::make_tuple(t.displacement.first, t.displacement.second); }