clang-tidy check to remove unnecessary class name before member function

245 Views Asked by At

Is there a clang-tidy check for replacing A::bar(); with just bar(); in the following example?

class A {
  void bar() {
  };
  void foo() {
    A::bar();
  };
};
0

There are 0 best solutions below