From 4c1d5ef5b6b4ac5e5553604f516a7a2a51f60e50 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 2 Dec 2011 17:02:20 -0800 Subject: [PATCH] do not need to point to reference --- bindings/python/mapnik_palette.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/mapnik_palette.cpp b/bindings/python/mapnik_palette.cpp index 23536896e..45866d318 100644 --- a/bindings/python/mapnik_palette.cpp +++ b/bindings/python/mapnik_palette.cpp @@ -48,6 +48,6 @@ void export_palette () ( arg("palette"), arg("type")), "Creates a new color palette from a file\n" )*/ - .def( "__init__", boost::python::make_constructor( &make_palette)) + .def( "__init__", boost::python::make_constructor(make_palette)) ; }