When I run CppCheck on a source file with inconclusive warnings but no other issues, the Statistics tab of the Statistics window reports that I have no messages of any kind: all the numbers are zero.
To produce this result, I checked the box for "Check for inconclusive errors also", ran CppCheck version 1.86 on a directory containing the file below, pulled down "View->Statistics", and selected the Statistics tab.
class Example
{
public:
Example();
private:
int x;
int y;
};
Example::Example() : y(2), x(1)
{
}
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When I run CppCheck on a source file with inconclusive warnings but no other issues, the Statistics tab of the Statistics window reports that I have no messages of any kind: all the numbers are zero.
To produce this result, I checked the box for "Check for inconclusive errors also", ran CppCheck version 1.86 on a directory containing the file below, pulled down "View->Statistics", and selected the Statistics tab.
Thanks! I created this ticket: https://trac.cppcheck.net/ticket/8989