mapnik::value_null - add <,<=,>,>= implementations
This commit is contained in:
parent
db9facef90
commit
9774f41b85
1 changed files with 20 additions and 0 deletions
|
@ -80,6 +80,26 @@ struct MAPNIK_DECL value_null
|
||||||
return true;
|
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>
|
template <typename T>
|
||||||
value_null operator+ (T const&) const
|
value_null operator+ (T const&) const
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue