mapnik::value_null - add <,<=,>,>= implementations

This commit is contained in:
artemp 2016-01-25 12:26:57 +01:00
parent db9facef90
commit 9774f41b85

View file

@ -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 <typename T>
value_null operator+ (T const&) const
{