From fd73a7f795192dd80eb370b43d81c2e6ba150289 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Wed, 31 May 2023 15:55:54 +0200 Subject: [PATCH] gradient: fix warn --- src/config/ConfigDataValues.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/ConfigDataValues.hpp b/src/config/ConfigDataValues.hpp index c8195bbf..7a4b5ee8 100644 --- a/src/config/ConfigDataValues.hpp +++ b/src/config/ConfigDataValues.hpp @@ -2,8 +2,7 @@ #include "../defines.hpp" #include -enum eConfigValueDataTypes -{ +enum eConfigValueDataTypes { CVD_TYPE_INVALID = -1, CVD_TYPE_GRADIENT = 0 }; @@ -38,7 +37,8 @@ class CGradientValueData : public ICustomConfigValueData { /* Float corresponding to the angle (rad) */ float m_fAngle = 0; - bool operator==(const CGradientValueData& other) { + // + bool operator==(const CGradientValueData& other) const { if (other.m_vColors.size() != m_vColors.size() || m_fAngle != other.m_fAngle) return false;