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

5 lines
95 B
C++
Raw Normal View History

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