suppressions: Avoid duplicate comparison.
This commit is contained in:
parent
a31db92918
commit
c98c7a2ebf
|
@ -67,7 +67,7 @@ public:
|
|||
if (errorId != other.errorId)
|
||||
return errorId < other.errorId;
|
||||
if (lineNumber < other.lineNumber)
|
||||
return lineNumber < other.lineNumber;
|
||||
return true;
|
||||
if (fileName != other.fileName)
|
||||
return fileName < other.fileName;
|
||||
if (symbolName != other.symbolName)
|
||||
|
|
Loading…
Reference in New Issue