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