This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/11415] [3.4 regression] Error message with ::::
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 7 Sep 2003 05:14:06 -0000
- Subject: [Bug c++/11415] [3.4 regression] Error message with ::::
- References: <20030702223112.11415.bangerth@dealii.org>
- 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=11415
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Last reconfirmed|2003-08-24 15:27:27 |2003-09-07 05:14:06
date| |
------- Additional Comments From pinskia at gcc dot gnu dot org 2003-09-07 05:14 -------
Another example, looks like GCC is trying to add "::" when it is already have it and when
accessing it as a namespace or a class:
template <int> class V {};
V< ::O:: > v;