fix raster colorizer_stop comparison operator - avoids clang unused variable warning
This commit is contained in:
parent
7387afd96f
commit
c1e2715af8
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ bool colorizer_stop::operator==(colorizer_stop const& other) const
|
||||||
{
|
{
|
||||||
return (value_ == other.value_) &&
|
return (value_ == other.value_) &&
|
||||||
(color_ == other.color_) &&
|
(color_ == other.color_) &&
|
||||||
(mode_ == other.mode_);
|
(mode_ == other.mode_) &&
|
||||||
(label_ == other.label_);
|
(label_ == other.label_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue