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 C2792

'super' : this keyword must be followed by '::'

The only token that can follow the keyword super is ::.

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

struct B {
   void mf();
};

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