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 C2671

'function' : static member functions do not have 'this' pointers

A static member function tried to access this.

Example

struct S
{
   static S* const func() { return this; }  // error
};