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

6 lines
100 B
C++
Raw Normal View History

2019-04-24 13:46:26 +00:00
class ClassWithProtectedMethod {
protected:
int getInt() { return 0; };
2019-04-24 13:46:26 +00:00
};