From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23515 invoked by alias); 9 May 2008 20:12:57 -0000 Received: (qmail 23507 invoked by uid 22791); 9 May 2008 20:12:56 -0000 X-Spam-Check-By: sourceware.org Received: from kuber.nabble.com (HELO kuber.nabble.com) (216.139.236.158) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 09 May 2008 20:12:33 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1JuYxD-00041r-6Z for gdb@sourceware.org; Fri, 09 May 2008 13:12:31 -0700 Message-ID: <17155652.post@talk.nabble.com> Date: Fri, 09 May 2008 20:12:00 -0000 From: darkskill To: gdb@sourceware.org Subject: multiple inheritance MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: chaster_killer@hotmail.fr X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2008-05/txt/msg00083.txt.bz2 Hi, gdb crashed when I set a breakpoint at the last line of these : struct A { virtual A * me2() { return this; } }; struct B { virtual B * me() { return this; }; }; struct C : public A, public B { C * me() {return this; } C * me2() {return this; } }; C test; How come ? -- View this message in context: http://www.nabble.com/multiple-inheritance-tp17155652p17155652.html Sent from the Sourceware - gdb list mailing list archive at Nabble.com.