From patchwork Tue Jan 22 08:04:43 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 31154 Received: (qmail 82520 invoked by alias); 22 Jan 2019 08:04:53 -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 82382 invoked by uid 89); 22 Jan 2019 08:04:53 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=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.2 spammy=window, Hx-languages-length:657 X-HELO: gateway31.websitewelcome.com Received: from gateway31.websitewelcome.com (HELO gateway31.websitewelcome.com) (192.185.143.39) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 22 Jan 2019 08:04:52 +0000 Received: from cm14.websitewelcome.com (cm14.websitewelcome.com [100.42.49.7]) by gateway31.websitewelcome.com (Postfix) with ESMTP id A384513348 for ; Tue, 22 Jan 2019 02:04:50 -0600 (CST) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id lr3Cgfiqd2qH7lr3CgI3gV; Tue, 22 Jan 2019 02:04:50 -0600 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=D3HbBdG9KUn79s4iJEdxcJRUnsl+9HEldQ1d88gayXk=; b=QwKtkL1bl/lYkMJ5oQSkuju9oT M0zoNJDhxkxj2QwYnKiNbtUv4jnjcGeREGh2QsiA58dqHJOJrBoZbFfryK65uHnpepT2k+aH/OTf4 p/fm+bueqgCz6x+PrEQl1CksV; Received: from 75-166-72-210.hlrn.qwest.net ([75.166.72.210]:60356 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1glr3C-0037XS-De; Tue, 22 Jan 2019 02:04:50 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH 7/9] Include gdb_curses.h in tui-wingeneral.h Date: Tue, 22 Jan 2019 01:04:43 -0700 Message-Id: <20190122080445.32658-8-tom@tromey.com> In-Reply-To: <20190122080445.32658-1-tom@tromey.com> References: <20190122080445.32658-1-tom@tromey.com> tui-wingeneral.h uses WINDOW, which is defined by curses. So, include gdb_curses.h from tui-wingeneral.h. 2019-01-21 Tom Tromey * tui/tui-wingeneral.h: Include gdb_curses.h. --- gdb/ChangeLog | 4 ++++ gdb/tui/tui-wingeneral.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/gdb/tui/tui-wingeneral.h b/gdb/tui/tui-wingeneral.h index 181bacc8e4..769573393d 100644 --- a/gdb/tui/tui-wingeneral.h +++ b/gdb/tui/tui-wingeneral.h @@ -22,6 +22,8 @@ #ifndef TUI_WINGENERAL_H #define TUI_WINGENERAL_H +#include "gdb_curses.h" + struct tui_win_info; struct tui_gen_win_info;