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

5 lines
103 B
C++
Raw Normal View History

class ClassWithVirtualMethod {
private:
virtual int getInt() { return 0; };
};