From 744eca65553012d0c5f3c93a26697c3a1fdde8ab Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 2 Dec 2011 17:01:38 -0800 Subject: [PATCH] allow mapnik::value_holder to store nulls, mainly to make it possible to return PyNone in python bindings --- include/mapnik/params.hpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/mapnik/params.hpp b/include/mapnik/params.hpp index 97f4fd4f6..397e6f986 100644 --- a/include/mapnik/params.hpp +++ b/include/mapnik/params.hpp @@ -23,19 +23,22 @@ #ifndef MAPNIK_PARAMS_HPP #define MAPNIK_PARAMS_HPP -// mapnik +// boost #include #include #include #include +// mapnik +#include + // stl #include #include namespace mapnik { -typedef boost::variant value_holder; +typedef boost::variant value_holder; typedef std::pair parameter; typedef std::map param_map;