Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
'token' : unexpected token following '::', identifier or keyword 'operator' expected
Remarks
The only tokens that can follow __super:: are an identifier or the keyword operator.
Example
The following example generates C2793
// C2793.cpp
struct B {
void mf();
};
struct D : B {
void mf() {
__super::(); // C2793
}
};