clang-tidy-readability-iden.../sources/PrivateMethod.cpp

5 lines
96 B
C++

class ClassWithPrivateMethod {
private:
int get_int() { return 0; };
};