1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
// RUN: %check_clang_tidy %s bugprone-compare-pointer-to-member-virtual-function %t
struct A {
virtual ~A();
void f1();
void f2();
virtual void f3();
virtual void f4();
void g1(int);
};
bool Result;
void base() {
Result = (&A::f1 == &A::f2);
Result = (&A::f1 == &A::f3);
// CHECK-MESSAGES: :[[@LINE-1]]:20: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
Result = (&A::f1 != &A::f3);
// CHECK-MESSAGES: :[[@LINE-1]]:20: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
Result = (&A::f3 == nullptr);
Result = (&A::f3 == &A::f4);
// CHECK-MESSAGES: :[[@LINE-1]]:20: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
void (A::*V1)() = &A::f3;
Result = (V1 == &A::f1);
// CHECK-MESSAGES: :[[@LINE-1]]:16: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
// CHECK-MESSAGES: :7:3: note: potential member virtual function is declared here.
// CHECK-MESSAGES: :8:3: note: potential member virtual function is declared here.
Result = (&A::f1 == V1);
// CHECK-MESSAGES: :[[@LINE-1]]:20: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
// CHECK-MESSAGES: :7:3: note: potential member virtual function is declared here.
// CHECK-MESSAGES: :8:3: note: potential member virtual function is declared here.
auto& V2 = V1;
Result = (&A::f1 == V2);
// CHECK-MESSAGES: :[[@LINE-1]]:20: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
// CHECK-MESSAGES: :7:3: note: potential member virtual function is declared here.
// CHECK-MESSAGES: :8:3: note: potential member virtual function is declared here.
void (A::*V3)(int) = &A::g1;
Result = (V3 == &A::g1);
Result = (&A::g1 == V3);
}
using B = A;
void usingRecordName() {
Result = (&B::f1 == &B::f3);
// CHECK-MESSAGES: :[[@LINE-1]]:20: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
void (B::*V1)() = &B::f1;
Result = (V1 == &B::f1);
// CHECK-MESSAGES: :[[@LINE-1]]:16: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
// CHECK-MESSAGES: :7:3: note: potential member virtual function is declared here.
// CHECK-MESSAGES: :8:3: note: potential member virtual function is declared here.
}
typedef A C;
void typedefRecordName() {
Result = (&C::f1 == &C::f3);
// CHECK-MESSAGES: :[[@LINE-1]]:20: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
void (C::*V1)() = &C::f1;
Result = (V1 == &C::f1);
// CHECK-MESSAGES: :[[@LINE-1]]:16: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
// CHECK-MESSAGES: :7:3: note: potential member virtual function is declared here.
// CHECK-MESSAGES: :8:3: note: potential member virtual function is declared here.
}
struct A1 : public A {
};
void inheritClass() {
Result = (&A1::f1 == &A1::f3);
// CHECK-MESSAGES: :[[@LINE-1]]:21: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
void (A1::*V1)() = &A1::f1;
Result = (V1 == &A1::f1);
// CHECK-MESSAGES: :[[@LINE-1]]:16: warning: comparing a pointer to member virtual function with other pointer is unspecified behavior, only compare it with a null-pointer constant for equality.
// CHECK-MESSAGES: :7:3: note: potential member virtual function is declared here.
// CHECK-MESSAGES: :8:3: note: potential member virtual function is declared here.
}
|