Fix redundantConditionError check description
This commit is contained in:
parent
5ad3ac2653
commit
5e996bc63b
|
@ -375,7 +375,7 @@ private:
|
||||||
c.suspiciousEqualityComparisonError(0);
|
c.suspiciousEqualityComparisonError(0);
|
||||||
c.selfAssignmentError(0, "varname");
|
c.selfAssignmentError(0, "varname");
|
||||||
c.incorrectLogicOperatorError(0, "foo > 3 && foo < 4", true);
|
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.memsetZeroBytesError(0, "varname");
|
||||||
c.memsetFloatError(0, "varname");
|
c.memsetFloatError(0, "varname");
|
||||||
c.memsetValueOutOfRangeError(0, "varname");
|
c.memsetValueOutOfRangeError(0, "varname");
|
||||||
|
|
Loading…
Reference in New Issue