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 C2620

member 'identifier' of union 'union' has user-defined constructor or non-trivial default constructor

A union member cannot have a default constructor.

Example

class A
{
   A();      // A has a default constructor
};
union U
{
   A a;      // error
};