次の方法で共有


コンパイラ エラー C2287

'class': 継承表現: 'representation1' は、必要な 'representation2' よりも一般的ではありません

クラスは、必要以上に単純な表現で宣言されています。

次の例では C2287 が生成されます。

// C2287.cpp
// compile with: /vmg /c
class __single_inheritance X;
class __single_inheritance Y;

struct A { };
struct B { };
struct X : A, B { };  // C2287  X uses multiple inheritance
struct Y : A { };  // OK