From 80109a15f21aa1206f66a658963943f819d2f7ce Mon Sep 17 00:00:00 2001
From: Vadim Seregin <vseregin@qti.qualcomm.com>
Date: Fri, 27 Sep 2019 17:40:13 -0700
Subject: [PATCH] remove extra qualifications

---
 source/Lib/CommonLib/AlfParameters.h | 4 ++--
 source/Lib/CommonLib/Slice.h         | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/source/Lib/CommonLib/AlfParameters.h b/source/Lib/CommonLib/AlfParameters.h
index feb374b91..49d09a0d3 100644
--- a/source/Lib/CommonLib/AlfParameters.h
+++ b/source/Lib/CommonLib/AlfParameters.h
@@ -232,7 +232,7 @@ struct AlfParam
   }
 
 #if JVET_O0245_VPS_DPS_APS
-  bool AlfParam::operator==( const AlfParam& other )
+  bool operator==( const AlfParam& other )
   {
     if( memcmp( enabledFlag, other.enabledFlag, sizeof( enabledFlag ) ) )
     {
@@ -286,7 +286,7 @@ struct AlfParam
     return true;
   }
 
-  bool AlfParam::operator!=( const AlfParam& other )
+  bool operator!=( const AlfParam& other )
   {
     return !( *this == other );
   }
diff --git a/source/Lib/CommonLib/Slice.h b/source/Lib/CommonLib/Slice.h
index 06560b76e..51d4788a4 100644
--- a/source/Lib/CommonLib/Slice.h
+++ b/source/Lib/CommonLib/Slice.h
@@ -173,7 +173,7 @@ public:
   bool       isNotDefaultScalingList();
 
 #if JVET_O0245_VPS_DPS_APS
-  bool ScalingList::operator==( const ScalingList& other )
+  bool operator==( const ScalingList& other )
   {
     if( memcmp( m_scalingListPredModeFlagIsDPCM, other.m_scalingListPredModeFlagIsDPCM, sizeof( m_scalingListPredModeFlagIsDPCM ) ) )
     {
@@ -195,7 +195,7 @@ public:
     return true;
   }
 
-  bool ScalingList::operator!=( const ScalingList& other )
+  bool operator!=( const ScalingList& other )
   {
     return !( *this == other );
   }
@@ -447,7 +447,7 @@ public:
   unsigned  getSliceReshapeChromaAdj() const                           { return enableChromaAdj;                 }
 
 #if JVET_O0245_VPS_DPS_APS
-  bool SliceReshapeInfo::operator==( const SliceReshapeInfo& other )
+  bool operator==( const SliceReshapeInfo& other )
   {
     if( sliceReshaperEnableFlag != other.sliceReshaperEnableFlag )
     {
@@ -481,7 +481,7 @@ public:
     return true;
   }
 
-  bool SliceReshapeInfo::operator!=( const SliceReshapeInfo& other )
+  bool operator!=( const SliceReshapeInfo& other )
   {
     return !( *this == other );
   }
-- 
GitLab