From patchwork Thu Jul 4 17:02:22 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 33543 Received: (qmail 105105 invoked by alias); 4 Jul 2019 17:03:24 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 104930 invoked by uid 89); 4 Jul 2019 17:03:23 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-18.1 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=H*RU:esmtpa, H*r:esmtpa, HX-Spam-Relays-External:esmtpa X-HELO: gateway20.websitewelcome.com Received: from gateway20.websitewelcome.com (HELO gateway20.websitewelcome.com) (192.185.60.19) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 04 Jul 2019 17:03:20 +0000 Received: from cm14.websitewelcome.com (cm14.websitewelcome.com [100.42.49.7]) by gateway20.websitewelcome.com (Postfix) with ESMTP id 89D04400D20EB for ; Thu, 4 Jul 2019 11:01:07 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id j58ghGie22qH7j58ghNq4K; Thu, 04 Jul 2019 12:03:18 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Sender:Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=y1538uyPFReV9bffWP8Z+8wv1LeXlNnFTgkdPcVEies=; b=DMEG1PVlSJ0KbzzbJ28ROErZ1J 6IfQOVddUZVLyu6nMmq4cqglF/l+zwggvk5NV2lKU32hhcs6nH5EbpbNWwa1Fd4cjRjSlcknPvCNN PtdAiAMRgpk2dZsYR470BHdKk; Received: from 174-29-58-150.hlrn.qwest.net ([174.29.58.150]:34692 helo=bapiya.Home) by box5379.bluehost.com with esmtpa (Exim 4.92) (envelope-from ) id 1hj58g-002sDI-Lr; Thu, 04 Jul 2019 12:03:18 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH 12/61] Don't declare unimplemented functions Date: Thu, 4 Jul 2019 11:02:22 -0600 Message-Id: <20190704170311.15982-13-tom@tromey.com> In-Reply-To: <20190704170311.15982-1-tom@tromey.com> References: <20190704170311.15982-1-tom@tromey.com> A couple of functions were declared but never defined. This removes the declarations. 2019-07-04 Tom Tromey * tui/tui-windata.h (tui_refresh_data_win): Don't declare. * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare. --- gdb/ChangeLog | 5 +++++ gdb/tui/tui-regs.h | 1 - gdb/tui/tui-windata.h | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gdb/tui/tui-regs.h b/gdb/tui/tui-regs.h index c1054696493..c99910b2c7e 100644 --- a/gdb/tui/tui-regs.h +++ b/gdb/tui/tui-regs.h @@ -28,6 +28,5 @@ extern void tui_check_register_values (struct frame_info *); extern void tui_show_registers (struct reggroup *group); extern void tui_display_registers_from (int); extern int tui_display_registers_from_line (int); -extern int tui_first_reg_element_inline (int); #endif /* TUI_TUI_REGS_H */ diff --git a/gdb/tui/tui-windata.h b/gdb/tui/tui-windata.h index adffcafacb4..fce4e6defc9 100644 --- a/gdb/tui/tui-windata.h +++ b/gdb/tui/tui-windata.h @@ -26,6 +26,5 @@ extern void tui_erase_data_content (const char *); extern void tui_delete_data_content_windows (void); -extern void tui_refresh_data_win (void); #endif /* TUI_TUI_WINDATA_H */