1 .. title:: clang-tidy - bugprone-virtual-near-miss
3 bugprone-virtual-near-miss
4 ==========================
6 Warn if a function is a near miss (i.e. the name is very similar and the function
7 signature is the same) to a virtual function from a base class.
17 struct Derived : Base {
19 // warning: 'Derived::funk' has a similar name and the same signature as virtual method 'Base::func'; did you mean to override it?