From patchwork Wed Oct 2 23:12:00 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 34804 Received: (qmail 38572 invoked by alias); 2 Oct 2019 23:12:09 -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 38531 invoked by uid 89); 2 Oct 2019 23:12:09 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.3 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=HX-Languages-Length:697, H*RU:192.185.149.101, HX-Spam-Relays-External:192.185.149.101 X-HELO: gateway34.websitewelcome.com Received: from gateway34.websitewelcome.com (HELO gateway34.websitewelcome.com) (192.185.149.101) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 02 Oct 2019 23:12:08 +0000 Received: from cm11.websitewelcome.com (cm11.websitewelcome.com [100.42.49.5]) by gateway34.websitewelcome.com (Postfix) with ESMTP id D67EBEA089 for ; Wed, 2 Oct 2019 18:12:06 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id FnmwiltIsVUVYFnmwiYmDS; Wed, 02 Oct 2019 18:12:06 -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=G7Cb0YfwoLuNyRLSNUbPobgh1hFjEwJSssbDM2lV678=; b=Q9yG0sui0Fk7UUM1K1lfUFDwYF qYtqUXhS9VJw/DEuUbjQmiDxbly7QtrpzYSwXm6zEOSdrfy1X3/+DAlX1H74NJXcl7QYmzHHs6PUI TjiTJBZfxe/x1pk7cXJd0FEyH; Received: from 75-166-72-156.hlrn.qwest.net ([75.166.72.156]:42570 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1iFnmw-003VLt-L4; Wed, 02 Oct 2019 17:12:06 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH 4/6] Remove declaration from tui-wingeneral.h Date: Wed, 2 Oct 2019 17:12:00 -0600 Message-Id: <20191002231202.10940-5-tom@tromey.com> In-Reply-To: <20191002231202.10940-1-tom@tromey.com> References: <20191002231202.10940-1-tom@tromey.com> tui-wingeneral.h has an unused forward declaration. This removes it. gdb/ChangeLog 2019-10-02 Tom Tromey * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare. --- gdb/ChangeLog | 4 ++++ gdb/tui/tui-wingeneral.h | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gdb/tui/tui-wingeneral.h b/gdb/tui/tui-wingeneral.h index 53d72327b94..1831d7b7cb6 100644 --- a/gdb/tui/tui-wingeneral.h +++ b/gdb/tui/tui-wingeneral.h @@ -25,7 +25,6 @@ #include "gdb_curses.h" struct tui_win_info; -struct tui_gen_win_info; /* Makes all windows invisible. */ extern void tui_make_all_invisible (void);