You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: The CppCheck parser should retain the order of violations (#195)
The CppCheck parser handels individual locations of a warning as separate violations.
These violations are then returned to the caller as a sorted set, destroying the insertion order.
To visualize the affected locations in the original order, we need to store the insertion order
by adding a new property.
See https://issues.jenkins.io/browse/JENKINS-75217
<errorid="missingOverride"severity="style"msg="The function 'reset' overrides a function in a base class but is not marked with a 'override' specifier."verbose="The function 'reset' overrides a function in a base class but is not marked with a 'override' specifier.">
6
+
<locationfile="derived.hpp"line="115"column="7"info="Function in derived class"/>
7
+
<locationfile="base.hpp"line="117"column="15"info="Virtual function in base class"/>
0 commit comments