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 C2833

'operator operator' is not a recognized operator or type

The word operator must be followed by an operator that you want to override or a type you want to convert.

The following sample generates C2833:

class A { 
};

void operator ::* ();   // C2833, remove the * to resolve the error

void main() {
}