This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libstdc++/12736] New: Demangler bug
- From: "carlo at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 22 Oct 2003 21:40:29 -0000
- Subject: [Bug libstdc++/12736] New: Demangler bug
- 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=12736
Summary: Demangler bug
Product: gcc
Version: 3.4
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: libstdc++
AssignedTo: carlo at alinoe dot com
ReportedBy: carlo at gcc dot gnu dot org
CC: gcc-bugs at gcc dot gnu dot org
_Z3fooIA3_iEvRKT_
demangles at the moment as
void foo<int[3]>(int ( const&) [3])
this should be
void foo<int[3]>(int const (&) [3])
See
http://gcc.gnu.org/ml/libstdc++/2003-10/msg00222.html
for more details.