mapnik::value_null - correct <=, >= return values ref #3285
This commit is contained in:
parent
d416f9fb7b
commit
835e60d900
1 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue