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

Compiler Warning (level 4) C4408

Error Message

anonymous union did not declare any data members

An anonymous union must have at least one data member.

The following sample generates C4408:

// C4408.cpp
// compile with: /W4 /LD
static union
{
   // int i;
};
// a named union can have no data members
// } MyUnion;
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.