Merge pull request #296 from mpaladin/master

Fix redundantConditionError check description
This commit is contained in:
Daniel Marjamäki 2014-05-07 16:01:26 +02:00
commit 4710c5c4f1
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ private:
c.suspiciousEqualityComparisonError(0);
c.selfAssignmentError(0, "varname");
c.incorrectLogicOperatorError(0, "foo > 3 && foo < 4", true);
c.redundantConditionError(0, "If x > 10 the condition x > 11 is always true.");
c.redundantConditionError(0, "If x > 11 the condition x > 10 is always true.");
c.memsetZeroBytesError(0, "varname");
c.memsetFloatError(0, "varname");
c.memsetValueOutOfRangeError(0, "varname");