NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2791

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();
   }
};