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