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.
member function not allowed in anonymous union
Anonymous unions cannot have member functions.
Example
The following sample generates C2669:
// C2669.cpp
struct X {
union {
int i;
void f() { // C2669, remove function
i = 0;
}
};
};