public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/12451] New: missing(late) class forward declaration in cxxabi.h
@ 2003-09-29 22:24 debian-gcc at lists dot debian dot org
  2003-09-29 23:09 ` [Bug libstdc++/12451] " pinskia at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: debian-gcc at lists dot debian dot org @ 2003-09-29 22:24 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12451

           Summary: missing(late) class forward declaration in cxxabi.h
           Product: gcc
           Version: 3.3.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libstdc++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: debian-gcc at lists dot debian dot org
                CC: gcc-bugs at gcc dot gnu dot org

[forwarded from http://bugs.debian.org/209386]

reported for 3.3.2 CVS 20030909

The class declaration for __class_type_info is missing at line 184 in
cxxabi.h.

Please apply following patch:

=====================================================================
--- /usr/include/c++/3.3/cxxabi.h	2003-08-31 13:36:42.000000000 +0200
+++ cxxabi.h	2003-09-09 19:01:41.000000000 +0200
@@ -175,6 +175,8 @@
                                 unsigned __outer) const;
 };
 
+class __class_type_info;
+
 /* type information for a pointer to member variable */
 class __pointer_to_member_type_info
   : public __pbase_type_info
@@ -201,8 +203,6 @@
                                 unsigned __outer) const;
 };
 
-class __class_type_info;
-
 /* helper class for __vmi_class_type */
 class __base_class_type_info
 {
=====================================================================


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libstdc++/12451] missing(late) class forward declaration in cxxabi.h
  2003-09-29 22:24 [Bug libstdc++/12451] New: missing(late) class forward declaration in cxxabi.h debian-gcc at lists dot debian dot org
@ 2003-09-29 23:09 ` pinskia at gcc dot gnu dot org
  2003-10-03  0:22 ` bkoz at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-09-29 23:09 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12451


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bkoz at gcc dot gnu dot org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2003-09-29 22:43:20
               date|                            |


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-09-29 22:43 -------
I can confirm that this patch is needed for the mainline.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libstdc++/12451] missing(late) class forward declaration in cxxabi.h
  2003-09-29 22:24 [Bug libstdc++/12451] New: missing(late) class forward declaration in cxxabi.h debian-gcc at lists dot debian dot org
  2003-09-29 23:09 ` [Bug libstdc++/12451] " pinskia at gcc dot gnu dot org
@ 2003-10-03  0:22 ` bkoz at gcc dot gnu dot org
  2003-10-03  0:36 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: bkoz at gcc dot gnu dot org @ 2003-10-03  0:22 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12451


bkoz at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |bkoz at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libstdc++/12451] missing(late) class forward declaration in cxxabi.h
  2003-09-29 22:24 [Bug libstdc++/12451] New: missing(late) class forward declaration in cxxabi.h debian-gcc at lists dot debian dot org
  2003-09-29 23:09 ` [Bug libstdc++/12451] " pinskia at gcc dot gnu dot org
  2003-10-03  0:22 ` bkoz at gcc dot gnu dot org
@ 2003-10-03  0:36 ` cvs-commit at gcc dot gnu dot org
  2003-10-03  0:37 ` cvs-commit at gcc dot gnu dot org
  2003-10-03  1:13 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-10-03  0:36 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12451



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-10-03 00:36 -------
Subject: Bug 12451

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	bkoz@gcc.gnu.org	2003-10-03 00:36:45

Modified files:
	libstdc++-v3   : ChangeLog 
	libstdc++-v3/libsupc++: cxxabi.h 

Log message:
	2003-10-02  Harald Boehme  <boehme@informatik.hu-berlin.de>
	
	PR libstdc++/12451
	* libsupc++/cxxabi.h: Move forward declaration of __class_type_info.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&r1=1.1991&r2=1.1992
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/libsupc++/cxxabi.h.diff?cvsroot=gcc&r1=1.14&r2=1.15


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libstdc++/12451] missing(late) class forward declaration in cxxabi.h
  2003-09-29 22:24 [Bug libstdc++/12451] New: missing(late) class forward declaration in cxxabi.h debian-gcc at lists dot debian dot org
                   ` (2 preceding siblings ...)
  2003-10-03  0:36 ` cvs-commit at gcc dot gnu dot org
@ 2003-10-03  0:37 ` cvs-commit at gcc dot gnu dot org
  2003-10-03  1:13 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-10-03  0:37 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12451



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-10-03 00:37 -------
Subject: Bug 12451

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	bkoz@gcc.gnu.org	2003-10-03 00:37:27

Modified files:
	libstdc++-v3   : ChangeLog 
	libstdc++-v3/libsupc++: cxxabi.h 

Log message:
	2003-10-02  Harald Boehme  <boehme@informatik.hu-berlin.de>
	
	PR libstdc++/12451
	* libsupc++/cxxabi.h: Move forward declaration of __class_type_info.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.1464.2.149&r2=1.1464.2.150
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/libsupc++/cxxabi.h.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.11&r2=1.11.2.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libstdc++/12451] missing(late) class forward declaration in cxxabi.h
  2003-09-29 22:24 [Bug libstdc++/12451] New: missing(late) class forward declaration in cxxabi.h debian-gcc at lists dot debian dot org
                   ` (3 preceding siblings ...)
  2003-10-03  0:37 ` cvs-commit at gcc dot gnu dot org
@ 2003-10-03  1:13 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-03  1:13 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12451


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |3.3.2


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-10-03 01:13 -------
Fixed for 3.3.2 and 3.4.


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2003-10-03  1:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-09-29 22:24 [Bug libstdc++/12451] New: missing(late) class forward declaration in cxxabi.h debian-gcc at lists dot debian dot org
2003-09-29 23:09 ` [Bug libstdc++/12451] " pinskia at gcc dot gnu dot org
2003-10-03  0:22 ` bkoz at gcc dot gnu dot org
2003-10-03  0:36 ` cvs-commit at gcc dot gnu dot org
2003-10-03  0:37 ` cvs-commit at gcc dot gnu dot org
2003-10-03  1:13 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).