コンパイラ エラー C2792
'super': このキーワードの後ろには '::' が必要です。
キーワード __super
の後に使用できるトークンは ::
だけです。
次の例では C2792 が生成されます。
// C2792.cpp
struct B {
void mf();
};
struct D : B {
void mf() {
__super.(); // C2792
// try the following line instead
// __super::mf();
}
};