class my_class_2
{
const union
{
int x;
int y;
};
my_class_2() : x(0) {}
};
--
René Bürgel
Software Engineer
Unicontrol Systemtechnik GmbH
OT Dittersbach
Sachsenburger Weg 34
09669 Frankenberg
Tel.: 03 72 06/ 88 73 - 19
Fax: 03 72 06/ 88 73 - 60
E-Mail: [EMAIL PROTECTED]
Internet: www.unicontrol.de
Unicontrol Systemtechnik GmbH
Geschäftsführer: Dipl.-Ing. Siegfried Heinze
Sitz der Gesellschaft: Frankenberg
Registergericht: Amtsgericht Chemnitz, HRB 15 475
If all members of the union are const, why don't you just make the union
itself const?
- bug in GCC or C++ standard ? Mark Tall
- Re: bug in GCC or C++ standard ? James Dennett
- Re: bug in GCC or C++ standard ? Mark Tall
- Re: bug in GCC or C++ standard ? James Dennett
- Re: bug in GCC or C++ standard ? Lawrence Crowl
- Re: bug in GCC or C++ standard ? Joe Buck
- Re: bug in GCC or C++ standard ? James Dennett
- Re: bug in GCC or C++ standard ? Joe Buck
- Re: bug in GCC or C++ standard ? René Bürgel
- Re: bug in GCC or C++ standard ? Mark Tall
- Re: bug in GCC or C++ standard ? René Bürgel
- Re: bug in GCC or C++ standard ? Lawrence Crowl
