Fix spurious ',' in operator==
This commit is contained in:
parent
2e1b32512b
commit
4f6ab6a4a2
1 changed files with 2 additions and 2 deletions
|
@ -70,8 +70,8 @@ gradient& gradient::operator=(gradient rhs)
|
|||
bool gradient::operator==(gradient const& other) const
|
||||
{
|
||||
return transform_ == other.transform_ && x1_ == other.x1_ && y1_ == other.y1_ && x2_ == other.x2_ &&
|
||||
y2_ == other.y2_ && r_ == other.r_ && std::equal(stops_.begin(), stops_.end(), other.stops_.begin()),
|
||||
units_ == other.units_ && gradient_type_ == other.gradient_type_;
|
||||
y2_ == other.y2_ && r_ == other.r_ && std::equal(stops_.begin(), stops_.end(), other.stops_.begin()) &&
|
||||
units_ == other.units_ && gradient_type_ == other.gradient_type_;
|
||||
}
|
||||
|
||||
void gradient::set_gradient_type(gradient_e grad)
|
||||
|
|
Loading…
Reference in a new issue