cppcheck/testclass2/testclass2.cpp

12 lines
124 B
C++

// uninitialized member variable: 'i'
class clKalle
{
public:
clKalle()
{
}
int i;
};