[DISABLE, INFORMATION, WARNING , ERROR]
A cast was done from a pointer of a class/struct to a pointer to another class/struct, but the second class/struct is not a base of the first one.
class A{} a;
class B{};
void main(void) {
B* b= (B*)&a;
}
Check if your code really does what you want it to.