clang-tidy-readability-iden.../test_ProtectedMethod.cpp
2019-04-24 16:46:26 +03:00

6 lines
101 B
C++

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