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 3) C4280

'operator –>' was self recursive through type 'type'

Your code incorrectly allows operator–> to call itself.

Example

struct A {
   int z;
   A& operator ->();
};

void f(A y) {
   int i = y->z; // warning C4280
}