Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
anonymousstruct or union did not declare any data members
An anonymous struct or 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;