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 C2793

'token' : unexpected token following '::', identifier or keyword 'operator' expected

The only tokens that can follow super:: are an identifier or the keyword operator.

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

struct B {
   void mf();
};

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