Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'identifier': best case inheritance representation: 'representation1' declared but 'representation2' required
Compiling the following code with /vmb ("Best-case always" representation) causes C2292.
// C2292.cpp
// compile with: /vmb
class __single_inheritance X;
struct A { };
struct B { };
struct X : A, B { }; // C2292, X uses multiple inheritance