diff --git a/include/mapnik/value.hpp b/include/mapnik/value.hpp index fdf9d826f..5ef7105aa 100644 --- a/include/mapnik/value.hpp +++ b/include/mapnik/value.hpp @@ -611,6 +611,11 @@ struct to_expression_string : public boost::static_visitor return ss.str(); } + std::string operator() (bool val) const + { + return val ? "true":"false"; + } + std::string operator() (value_null const& val) const { boost::ignore_unused_variable_warning(val);