From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5796 invoked by alias); 4 Jul 2011 18:54:00 -0000 Received: (qmail 5787 invoked by uid 22791); 4 Jul 2011 18:53:59 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from e24smtp03.br.ibm.com (HELO e24smtp03.br.ibm.com) (32.104.18.24) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 04 Jul 2011 18:53:46 +0000 Received: from /spool/local by e24smtp03.br.ibm.com with XMail ESMTP for from ; Mon, 4 Jul 2011 15:53:44 -0300 Received: from d24relay01.br.ibm.com ([9.8.31.16]) by e24smtp03.br.ibm.com ([10.172.0.139]) with XMail ESMTP; Mon, 4 Jul 2011 15:53:42 -0300 Received: from d24av02.br.ibm.com (d24av02.br.ibm.com [9.8.31.93]) by d24relay01.br.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p64IoFI84976796 for ; Mon, 4 Jul 2011 15:50:15 -0300 Received: from d24av02.br.ibm.com (loopback [127.0.0.1]) by d24av02.br.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p64IrfcF024242 for ; Mon, 4 Jul 2011 15:53:41 -0300 Received: from [9.8.1.40] ([9.8.1.40]) by d24av02.br.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p64Irfg6024237 for ; Mon, 4 Jul 2011 15:53:41 -0300 Subject: [commit] Remove unused function ui_out_get_field_separator. From: Thiago Jung Bauermann To: gdb-patches ml Content-Type: text/plain; charset="UTF-8" Date: Mon, 04 Jul 2011 18:54:00 -0000 Message-ID: <1309805620.4471.5.camel@hactar> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit x-cbid: 11070418-9254-0000-0000-000005C2039C X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-07/txt/msg00110.txt.bz2 Hi, $SUBJECT. -- []'s Thiago Jung Bauermann IBM Linux Technology Center 2011-07-04 Thiago Jung Bauermann * ui-out.c (ui_out_get_field_separator): Remove unused function. * ui-out.h (ui_out_get_field_separator): Remove prototype. diff --git a/gdb/ui-out.c b/gdb/ui-out.c index 0b4ef54..2994828 100644 --- a/gdb/ui-out.c +++ b/gdb/ui-out.c @@ -1115,13 +1115,6 @@ specified after table_body and inside a list.")); } -/* Access to ui_out format private members. */ - -void -ui_out_get_field_separator (struct ui_out *uiout) -{ -} - /* Access to ui-out members data. */ void * diff --git a/gdb/ui-out.h b/gdb/ui-out.h index 244a145..ee6d98f 100644 --- a/gdb/ui-out.h +++ b/gdb/ui-out.h @@ -148,8 +148,6 @@ extern void ui_out_wrap_hint (struct ui_out *uiout, char *identstring); extern void ui_out_flush (struct ui_out *uiout); -extern void ui_out_get_field_separator (struct ui_out *uiout); - extern int ui_out_set_flags (struct ui_out *uiout, int mask); extern int ui_out_clear_flags (struct ui_out *uiout, int mask);