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 Warning (level 4) C4514

'function' : unreferenced inline function has been removed

The optimizer removed an inline function that is not called. The following sample generates C4514:

class A {
   public:
      void func() {   // C4514, remove the function to resolve
      }
};

void main() {
}