diff --git a/include/mapnik/value_types.hpp b/include/mapnik/value_types.hpp index a250b49b4..83ea7641a 100644 --- a/include/mapnik/value_types.hpp +++ b/include/mapnik/value_types.hpp @@ -80,6 +80,26 @@ struct MAPNIK_DECL value_null return true; } + bool operator>(value_null) const + { + return false; + } + + bool operator>=(value_null) const + { + return false; + } + + bool operator<(value_null) const + { + return false; + } + + bool operator<=(value_null) const + { + return false; + } + template value_null operator+ (T const&) const {