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

6 lines
100 B
C++

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