From cc1c990a2a6412ec1f7d7ca93085e69cf66b9958 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Tue, 6 Feb 2024 09:37:48 +0000 Subject: [PATCH] clang-format : `pre-commit run --show-diff-on-failure --color=always --all-files` xsx --- src/gradient.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gradient.cpp b/src/gradient.cpp index 6984d8b60..6d46960d9 100644 --- a/src/gradient.cpp +++ b/src/gradient.cpp @@ -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)