This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/11119] using forward declared classes in templates
- From: "bangerth at dealii dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 7 Jun 2003 00:33:38 -0000
- Subject: [Bug c++/11119] using forward declared classes in templates
- References: <20030606215035.11119.lars@trolltech.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11119
bangerth@dealii.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From bangerth@dealii.org 2003-06-07 00:33 -------
Not a bug. "b<<t" might be a global operator that is only looked up later
in two-stage name loolup. b.operator<<(t) must be a member function, so
two-stage name lookup requires a check that something like that exists.
It aborts with icc as well, if one switches on -Xc -ansi.
W.