[Bug c++/29607] code fails to build with 4.1 20061020, which built with 20060901

2006-10-26 Thread debian-gcc at lists dot debian dot org
--- Comment #1 from debian-gcc at lists dot debian dot org 2006-10-26 17:42 --- Created an attachment (id=12497) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12497action=view) preprocessed source -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29607

[Bug c++/29607] code fails to build with 4.1 20061020, which built with 20060901

2006-10-26 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-10-26 17:58 --- -fpermissive That shows this code is most likely invalid code anyways. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29607

[Bug c++/29607] code fails to build with 4.1 20061020, which built with 20060901

2006-10-26 Thread debian-gcc at lists dot debian dot org
--- Comment #3 from debian-gcc at lists dot debian dot org 2006-10-26 18:22 --- without -fpermissive: x86_64-linux-gnu-g++ -Wall -save-temps -O2 -D_BSD_SOURCE -D_GNU_SOURCE -DISLINUX -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -DDEBUG=0 -O2 -Wall -I/usr/include/tcl8.3

[Bug c++/29607] code fails to build with 4.1 20061020, which built with 20060901

2006-10-26 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-10-26 19:52 --- Reducing ... -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29607

[Bug c++/29607] code fails to build with 4.1 20061020, which built with 20060901

2006-10-26 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-10-26 20:07 --- Reduced: class WvLink{}; class WvVectorBase { class IterBase { WvLink *cur() const{} }; }; templateclass T class WvVector : public WvVectorBase { class Iter : public WvVector::IterBase {