From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26853 invoked by alias); 11 Jun 2003 21:01:08 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 26567 invoked from network); 11 Jun 2003 21:01:05 -0000 Received: from unknown (HELO localhost.redhat.com) (207.219.125.131) by sources.redhat.com with SMTP; 11 Jun 2003 21:01:05 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id B402C2B63; Wed, 11 Jun 2003 17:01:00 -0400 (EDT) Message-ID: <3EE7988C.10401@redhat.com> Date: Wed, 11 Jun 2003 21:01:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030223 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Keith Seitz Cc: "gdb-patches@sources.redhat.com" Subject: Re: [RFA] varobj: call CHECK_TYPEDEF References: <1051215397.1538.43.camel@lindt.uglyboxes.com> <3EA84A9B.5020308@redhat.com> <1051221433.1534.72.camel@lindt.uglyboxes.com> <3EA8629B.50603@redhat.com> <1055362509.1571.63.camel@lindt.uglyboxes.com> Content-Type: multipart/mixed; boundary="------------040706070201080700050609" X-SW-Source: 2003-06/txt/msg00385.txt.bz2 This is a multi-part message in MIME format. --------------040706070201080700050609 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 52 Er, this is C++, Daniel, David or MichaelC? Andrew --------------040706070201080700050609 Content-Type: message/rfc822; name="mailbox-message://ac131313@movemail/fsf/gdb/patches#15270852" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="mailbox-message://ac131313@movemail/fsf/gdb/patches#15270852" Content-length: 3060 X-Mozilla-Status2: 00000000 Return-Path: Delivered-To: cagney@localhost.redhat.com Received: from localhost (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 6A4342B63 for ; Wed, 11 Jun 2003 16:08:23 -0400 (EDT) X-Sieve: cmu-sieve 2.0 Received: from potter.sfbay.redhat.com by localhost with IMAP (fetchmail-6.2.1) for cagney@localhost (single-drop); Wed, 11 Jun 2003 16:08:23 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id h5BK7ow30327 for ; Wed, 11 Jun 2003 13:07:50 -0700 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h5BK7nI15241; Wed, 11 Jun 2003 16:07:49 -0400 Received: from [150.1.200.14] (vpn50-62.rdu.redhat.com [172.16.50.62]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h5BK7mE03716; Wed, 11 Jun 2003 16:07:49 -0400 Subject: Re: [RFA] varobj: call CHECK_TYPEDEF From: Keith Seitz To: Andrew Cagney Cc: "gdb-patches@sources.redhat.com" In-Reply-To: <3EA8629B.50603@redhat.com> References: <1051215397.1538.43.camel@lindt.uglyboxes.com> <3EA84A9B.5020308@redhat.com> <1051221433.1534.72.camel@lindt.uglyboxes.com> <3EA8629B.50603@redhat.com> Content-Type: text/plain Organization: Message-Id: <1055362509.1571.63.camel@lindt.uglyboxes.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.3 Date: 11 Jun 2003 13:15:10 -0700 Content-Transfer-Encoding: 7bit Content-length: 1407 On Thu, 2003-04-24 at 15:18, Andrew Cagney wrote: So where do we stand with this? Shall I check it in and deal with the fallout? (I need to go through and double-check all the typedef stuff in varobj anyway, but at least this will allow users to use varobj, even if it isn't cosmetically perfect.) Keith > > Index: insight219-b.cc > > =================================================================== > > RCS file: insight219-b.cc > > diff -N insight219-b.cc > > --- /dev/null 1 Jan 1970 00:00:00 -0000 > > +++ insight219-b.cc 24 Apr 2003 21:54:00 -0000 > > @@ -0,0 +1,4 @@ > > +#include "insight219.h" > > + > > +B::~B() {} > > + > > > > Index: insight219.cc > > =================================================================== > > RCS file: insight219.cc > > diff -N insight219.cc > > --- /dev/null 1 Jan 1970 00:00:00 -0000 > > +++ insight219.cc 24 Apr 2003 21:54:00 -0000 > > @@ -0,0 +1,8 @@ > > +#include "insight219.h" > > + > > +int > > +main(int argc, char *argv[]) > > +{ > > + B *b = new B(); > > + return 0; > > +}; > > Index: insight219.h > > =================================================================== > > RCS file: insight219.h > > diff -N insight219.h > > --- /dev/null 1 Jan 1970 00:00:00 -0000 > > +++ insight219.h 24 Apr 2003 21:54:00 -0000 > > @@ -0,0 +1,8 @@ > > +class B > > +{ > > +public: > > + virtual ~B(); > > + > > +private: > > + int b; > > +}; > > --------------040706070201080700050609--