Skip to content
Snippets Groups Projects
Commit fa57eb29 authored by Xiang Li's avatar Xiang Li
Browse files

Merge branch 'suehring-operator-fix' into 'master'

fix AlfParam::operator==

See merge request jvet/VVCSoftware_VTM!2715
parents be568ce7 e5d1c16e
No related branches found
No related tags found
1 merge request!2715fix AlfParam::operator==
Pipeline #11740 passed
......@@ -168,7 +168,7 @@ struct AlfParam
{
return false;
}
if (nonLinearFlag == other.nonLinearFlag)
if (nonLinearFlag != other.nonLinearFlag)
{
return false;
}
......@@ -196,7 +196,7 @@ struct AlfParam
{
return false;
}
if (newFilterFlag == other.newFilterFlag)
if (newFilterFlag != other.newFilterFlag)
{
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment