Compiler Error C2791 (Windows CE 5.0)

Send Feedback

illegal use of 'super': 'class' does not have any base classes

The keyword super was used within the context of a member function of a class that does not have any base classes.

The following code sample shows one way this error could be generated:

struct D {
void mf() {
__super::mf();
}
};

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.