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 C2083

struct/union comparison illegal

A structure or union is compared directly with another user-defined type. This is now allowed unless a comparison operator has been defined or a conversion to a scalar type exists. The following sample generates C2083:

struct A
{
   int i;
} a, b;
void func()
{
   if( a == b );   // error, structure comparison
}