This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: c++/9460: parse error on template member function


----- Original Message -----
From: "Wolfgang Bangerth" <bangerth@ticam.utexas.edu>
To: "Oliver Schoenborn" <oliver.schoenborn@utoronto.ca>
Cc: <gcc-gnats@gcc.gnu.org>
Sent: Tuesday, January 28, 2003 10:14 PM
Subject: Re: c++/9460: parse error on template member function

> It would be different if you would call
>   Foo().F1<A> ();
> in which case you would have to use
>   Foo().template F1<A> ();

Sorry for the confusion. The problem is, the compiler still has symmetric
behaviour:

Foo().F1<A>() compiles with no errors, while it needs the template keyword.
(accept-illegal)
In my first code snippet, if you remove Bar::F1, the code fails to compile.
(reject-legal).

Giovanni Bajo


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]