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

5 lines
96 B
C++
Raw Permalink Normal View History

2019-04-24 13:46:26 +00:00
class ClassWithPrivateMethod {
private:
int get_int() { return 0; };
};