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

6 lines
101 B
C++

class ClassWithProtectedMethod {
protected:
int get_int() { return 0; };
};