-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Minor
-
Component/s: cppcheck-plugin
-
None
There is a typo in
as result plugin incorrectly calculates total amount of errors
- nbErrors = this.getReport().getWarningSeverityList().size(); + nbErrors = nbErrors + this.getReport().getWarningSeverityList().size();
and for previous errors
- nbPreviousError = previousResult.getReport().getWarningSeverityList().size(); + nbPreviousError = nbPreviousError + previousResult.getReport().getWarningSeverityList().size();
Please correct.