suppressions: Avoid duplicate comparison.

This commit is contained in:
orbitcowboy 2018-10-04 17:13:11 +02:00
parent a31db92918
commit c98c7a2ebf
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public:
if (errorId != other.errorId) if (errorId != other.errorId)
return errorId < other.errorId; return errorId < other.errorId;
if (lineNumber < other.lineNumber) if (lineNumber < other.lineNumber)
return lineNumber < other.lineNumber; return true;
if (fileName != other.fileName) if (fileName != other.fileName)
return fileName < other.fileName; return fileName < other.fileName;
if (symbolName != other.symbolName) if (symbolName != other.symbolName)