[Bug c++/22369] C++ produces mis-matched types with pointers to member functions

2007-08-20 Thread rguenth at gcc dot gnu dot org
--- Comment #5 from rguenth at gcc dot gnu dot org 2007-08-20 12:32 --- Subject: Bug 22369 Author: rguenth Date: Mon Aug 20 12:31:44 2007 New Revision: 127647 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=127647 Log: 2007-08-20 Richard Guenther [EMAIL PROTECTED] PR

[Bug c++/22369] C++ produces mis-matched types with pointers to member functions

2007-08-20 Thread rguenth at gcc dot gnu dot org
--- Comment #6 from rguenth at gcc dot gnu dot org 2007-08-20 13:24 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug c++/22369] C++ produces mis-matched types with pointers to member functions

2007-07-24 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2007-07-24 15:55 --- This seems to be fixed at least with the patches I have pending. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/22369] C++ produces mis-matched types with pointers to member functions

2005-12-05 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-12-05 20:10 --- g++.dg/inherit/ptrmem1.C fails the same way. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22369

[Bug c++/22369] C++ produces mis-matched types with pointers to member functions

2005-08-04 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-08-05 04:46 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW

[Bug c++/22369] C++ produces mis-matched types with pointers to member functions

2005-07-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-08 16:30 --- Oh, I copied the wrong testcase. Anyways here is the testcase which fails: struct A { void f() { } }; struct B: public A { }; struct C: public A { }; struct D : public B, public C { }; typedef void