Compiler Error C2292

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at Compiler Error C2292.

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  

Show: