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

This commit is contained in:
artemp 2016-02-04 10:04:27 +01:00
parent 7ad4bf379d
commit 7ab93a30f2

View file

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