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();
};
};
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();
};
};
Copyright © 2021 Jogjafile Inc.