[Bug c++/19404] [4.0 Regression] anonymous types and templates and rejecting valid code

2005-05-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-06 20:16 --- *** Bug 21426 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug c++/19404] [4.0 Regression] anonymous types and templates and rejecting valid code

2005-04-27 Thread pcarlini at suse dot de
--- Additional Comments From pcarlini at suse dot de 2005-04-27 09:15 --- *** Bug 21244 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug c++/19404] [4.0 Regression] anonymous types and templates and rejecting valid code

2005-04-08 Thread lars at trolltech dot com
--- Additional Comments From lars at trolltech dot com 2005-04-08 16:35 --- Subject: Re: [4.0 Regression] anonymous types and templates and rejecting valid code On Friday 08 April 2005 17:34, mark at codesourcery dot com wrote: > --- Additional Comments From mark at codesourcery d

[Bug c++/19404] [4.0 Regression] anonymous types and templates and rejecting valid code

2005-04-08 Thread mark at codesourcery dot com
--- Additional Comments From mark at codesourcery dot com 2005-04-08 15:34 --- Subject: Re: [4.0 Regression] anonymous types and templates and rejecting valid code lars at trolltech dot com wrote: > --- Additional Comments From lars at trolltech dot com 2005-04-08 14:36 > --

[Bug c++/19404] [4.0 Regression] anonymous types and templates and rejecting valid code

2005-04-08 Thread lars at trolltech dot com
--- Additional Comments From lars at trolltech dot com 2005-04-08 14:36 --- Hi Mark, (In reply to comment #3) > This code is invalid. The use of ">>" requires the instantiation of the > declaration of the overloaded "operator>>", but that instantiation fails because > one of the

[Bug c++/19404] [4.0 Regression] anonymous types and templates and rejecting valid code

2005-01-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-01-31 06:22 --- This code is invalid. The use of ">>" requires the instantiation of the declaration of the overloaded "operator>>", but that instantiation fails because one of the template argument is anonymous. --

[Bug c++/19404] [4.0 Regression] anonymous types and templates and rejecting valid code

2005-01-12 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 20:35 --- The only patch which makes sense (as it is not really that bogus really as shown in this example): PR c++/17413 * pt.c (check_instantiated_args): Remove bogus SFINAE code. -- Wh