If I make a const union object (e.g in code below ), then no member assignment can be done in that. So is there any use of making a const union object, in any case ?
union un
{
int i;
float f;
char c;
};
const union un a;
/// ! a.i = 10; error.
cit is not uncommon to interpret a union through a different member to that which was most recently set. And of course, it could beconst volatile- i.e. we won't change it, but someone else might, and we need to be able to see that. – BoBTFish Aug 10 '12 at 8:12const. – DeadMG Aug 10 '12 at 8:14union"elaborate type specifier" makes it portable. I rollback'd my rollback. :P – Xeo Aug 10 '12 at 8:15