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 C2798

'super::member' is ambiguous

Multiple inherited structures contain the member you referenced with super. You could fix the error by either,

For example, the following code shows how this error would be generated.

struct B1 {
   int i;
};

struct B2 {
   int i;
};

struct D : B1, B2 {
   void g() {
      __super::i = 4;
   }
};