Expand Minimize
0 out of 2 rated this helpful - Rate this topic

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.

The following sample generates C2620:

// C2620.cpp
class A {
   A();   // A has a default constructor
};
union U {
   A a;   // C2620
};
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.