mapnik::value_null - correct <=, >= return values ref #3285

This commit is contained in:
artemp 2016-02-04 10:04:27 +01:00
parent d416f9fb7b
commit 835e60d900

View file

@ -87,7 +87,7 @@ struct MAPNIK_DECL value_null
bool operator>=(value_null) const bool operator>=(value_null) const
{ {
return false; return true;
} }
bool operator<(value_null) const bool operator<(value_null) const
@ -97,7 +97,7 @@ struct MAPNIK_DECL value_null
bool operator<=(value_null) const bool operator<=(value_null) const
{ {
return false; return true;
} }
template <typename T> template <typename T>