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 C2795

'super::function' is not a member function

This error message appears whenever you try to use super to access a member other than a member function.

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

struct B {
   int m_data;
};

struct D : B {
   void mf() {
      super::m_data += 1;
   }
};