Poznámka
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete sa skúsiť prihlásiť alebo zmeniť adresáre.
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete skúsiť zmeniť adresáre.
'function' : is not a member of any direct or indirect base class of 'class'
Remarks
You tried to use super to call a nonexistent member function.
Example
The following example generates C2794
// C2794.cpp
struct B {
void mf();
};
struct D : B {
void mf() {
__super::f(); // C2794
}
};