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 C2797

'method' : method after 'super' is ambiguous

This error appears whenever the compiler finds two or more base-class methods that match the signature of the current method.

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

struct B1 {
   void mf();
};

struct B2 {
   void mf();
};

struct D : B1, B2 {
   void mf() {
      __super::mf();
   }
};