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 C2088

'operator' : illegal for 'class-key'

The operator was not defined for the structure or union. This error is only valid for C code.

The following sample generates C2088 three times:

// compile /Tc
struct S { 
   int m_i; 
} s;

void function() {
    int i = s * 1;
    struct S s2 = +s;
    s++;
}