Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Error C2619

union 'union' : cannot have static member variable 'identifier'

A union member is declared static.

The following sample generates C2619

// C2619.cpp
int main() {
   union { static int j; };  // C2619
   union { int j; };  // OK
}
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.