fix raster colorizer_stop comparison operator - avoids clang unused variable warning

This commit is contained in:
Dane Springmeyer 2011-10-03 19:54:48 +00:00
parent 7387afd96f
commit c1e2715af8

View file

@ -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_);
} }