From 302b06dd4bf726e063f6acd02dff882b76f53751 Mon Sep 17 00:00:00 2001 From: Rodolfo Ribeiro Gomes Date: Feb 12 2020 09:56:36 +0000 Subject: fix relation operators for ValueBase --- diff --git a/synfig-core/src/synfig/value.h b/synfig-core/src/synfig/value.h index a7b88a8..7d6188f 100644 --- a/synfig-core/src/synfig/value.h +++ b/synfig-core/src/synfig/value.h @@ -161,9 +161,9 @@ public: bool operator>(const ValueBase& rhs)const { return rhs < *this; } bool operator<=(const ValueBase& rhs)const - { return !(*this < rhs); } - bool operator>=(const ValueBase& rhs)const { return !(rhs < *this); } + bool operator>=(const ValueBase& rhs)const + { return !(*this < rhs); } //! Constant index operator for when value is of type TYPE_LIST const ValueBase &operator[](int index)const