mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
fix raster colorizer_stop comparison operator - avoids clang unused variable warning
This commit is contained in:
parent
7387afd96f
commit
c1e2715af8
@ -68,7 +68,7 @@ bool colorizer_stop::operator==(colorizer_stop const& other) const
|
||||
{
|
||||
return (value_ == other.value_) &&
|
||||
(color_ == other.color_) &&
|
||||
(mode_ == other.mode_);
|
||||
(mode_ == other.mode_) &&
|
||||
(label_ == other.label_);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user