[Bug c++/33101] Bad C++ error on invalid code: anonymous has incomplete type

2012-03-16 Thread Keith.S.Thompson at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33101 Keith Thompson Keith.S.Thompson at gmail dot com changed: What|Removed |Added CC|

[Bug c++/33101] Bad C++ error on invalid code: anonymous has incomplete type

2012-03-16 Thread Keith.S.Thompson at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33101 --- Comment #11 from Keith Thompson Keith.S.Thompson at gmail dot com 2012-03-16 19:30:17 UTC --- And since the C++ code is valid, the title of this bug should be changed.

[Bug c++/33101] Bad C++ error on invalid code: anonymous has incomplete type

2007-09-08 Thread bangerth at dealii dot org
--- Comment #9 from bangerth at dealii dot org 2007-09-08 23:24 --- This sounds good to me to. I guess we can now confirm the PR. -- bangerth at dealii dot org changed: What|Removed |Added

[Bug c++/33101] Bad C++ error on invalid code: anonymous has incomplete type

2007-08-18 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|normal |enhancement Keywords|

[Bug c++/33101] Bad C++ error on invalid code: anonymous has incomplete type

2007-08-18 Thread schwab at suse dot de
--- Comment #3 from schwab at suse dot de 2007-08-18 09:00 --- The error message makes perfect sense: void is an incomplete type and the formal parameter has no name. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33101

[Bug c++/33101] Bad C++ error on invalid code: anonymous has incomplete type

2007-08-18 Thread ian at airs dot com
--- Comment #4 from ian at airs dot com 2007-08-18 17:12 --- The error message makes some sense if you already understand the issue. If you do not know what the problem is, then I believe it is completely obscure. This is particularly so since the same code is valid C code. -- ian

[Bug c++/33101] Bad C++ error on invalid code: anonymous has incomplete type

2007-08-18 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2007-08-18 17:15 --- Here is my quote for today: Stop programming in C using a C++ compiler. Learn C+. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/33101] Bad C++ error on invalid code: anonymous has incomplete type

2007-08-18 Thread fang at csl dot cornell dot edu
--- Comment #6 from fang at csl dot cornell dot edu 2007-08-18 17:29 --- Subject: Re: Bad C++ error on invalid code: anonymous has incomplete type --- Comment #5 from pinskia at gcc dot gnu dot org 2007-08-18 17:15 --- Here is my quote for today: Stop programming in C

[Bug c++/33101] Bad C++ error on invalid code: anonymous has incomplete type

2007-08-18 Thread gdr at cs dot tamu dot edu
--- Comment #7 from gdr at cs dot tamu dot edu 2007-08-18 19:52 --- Subject: Re: C++ error on valid code: anonymous has incomplete type ian at airs dot com [EMAIL PROTECTED] writes: | Thanks for the explanation. That is new to me. Check for abomination in DE :-) | I am now going

[Bug c++/33101] Bad C++ error on invalid code: anonymous has incomplete type

2007-08-18 Thread ian at airs dot com
--- Comment #8 from ian at airs dot com 2007-08-18 22:10 --- Works for me. -- ian at airs dot com changed: What|Removed |Added Severity|enhancement