You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class B {
uint32_t blah = 0x11111111;
};
class C {
uint32_t blah = 0x22222222;
};
class A : public B, public C {
};
int main(int argc, char *argv[]) {
A *a = new A();
return 0;
}
In the case where a class inherits from 2 classes that share the same field name the debugger will erroneously show the first field value for both fields.
The text was updated successfully, but these errors were encountered:
mistymntncop
changed the title
[Bug] Duplicate fields from inherited class shows wrong value.
[Bug] Duplicate fields from inherited classes shows wrong value.
Nov 6, 2024
Compiled with cl.exe version 19.28.29337.
In the case where a class inherits from 2 classes that share the same field name the debugger will erroneously show the first field value for both fields.
The text was updated successfully, but these errors were encountered: