mirror of
https://github.com/mapnik/mapnik.git
synced 2026-02-01 17:36:36 +00:00
revert back bool logic
update urls -> https://github.com/mapnik/mapnik/issues/794
This commit is contained in:
parent
c5a90023ae
commit
c87c05911b
@ -109,7 +109,8 @@ struct equals
|
||||
|
||||
bool operator() (value_null, value_null) const
|
||||
{
|
||||
return false;
|
||||
// this changed from false to true - https://github.com/mapnik/mapnik/issues/794
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
@ -146,18 +147,21 @@ struct not_equals
|
||||
|
||||
bool operator() (value_null, value_null) const
|
||||
{
|
||||
// TODO - needs review - https://github.com/mapnik/mapnik/issues/794
|
||||
return false;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
bool operator() (value_null, const T &) const
|
||||
{
|
||||
// TODO - needs review - https://github.com/mapnik/mapnik/issues/794
|
||||
return false;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
bool operator() (const T &, value_null) const
|
||||
{
|
||||
// TODO - needs review - https://github.com/mapnik/mapnik/issues/794
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user