From patchwork Sun Nov 10 16:49:12 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 35776 Received: (qmail 108846 invoked by alias); 10 Nov 2019 16:49:19 -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 108791 invoked by uid 89); 10 Nov 2019 16:49:19 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-20.7 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:986 X-HELO: gateway23.websitewelcome.com Received: from gateway23.websitewelcome.com (HELO gateway23.websitewelcome.com) (192.185.49.219) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 10 Nov 2019 16:49:17 +0000 Received: from cm14.websitewelcome.com (cm14.websitewelcome.com [100.42.49.7]) by gateway23.websitewelcome.com (Postfix) with ESMTP id 15C5C4556 for ; Sun, 10 Nov 2019 10:49:16 -0600 (CST) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id TqOpiq1eQBnGaTqOpiRLfo; Sun, 10 Nov 2019 10:49:16 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=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: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=DYcJp5isPCEHsfdwop2BPiSf9LGGk8Jt/LR0Op+vMFw=; b=J/fX0AdBxa3BB/s1OptL4vYvtr njBdQYYHqPldJkI6ng1PWvOPzwIrFSb4vGOkBNY+FDOYiptV2KNkhdHjGKvM5IO8+bhKeaJwKK5Cg 5aQWuRNh+LB6PTCnGLZzx3J8X; Received: from 75-166-69-206.hlrn.qwest.net ([75.166.69.206]:52624 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1iTqOo-0034d6-TT; Sun, 10 Nov 2019 09:49:15 -0700 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [FYI] Remove unused constructor declaration from cli_style_option Date: Sun, 10 Nov 2019 09:49:12 -0700 Message-Id: <20191110164912.32063-1-tom@tromey.com> I noticed that cli_style_option declares a constructor that is never defined. This removes it. gdb/ChangeLog 2019-11-10 Tom Tromey * cli/cli-style.h (class cli_style_option) : Remove unused declaration. Change-Id: Ic59ec7eab4d7183d9392b58709354b2d4449b7be --- gdb/ChangeLog | 5 +++++ gdb/cli/cli-style.h | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/gdb/cli/cli-style.h b/gdb/cli/cli-style.h index 6716471dec3..44eb6cb63ae 100644 --- a/gdb/cli/cli-style.h +++ b/gdb/cli/cli-style.h @@ -34,9 +34,6 @@ public: /* Construct a CLI style option with an intensity. */ cli_style_option (const char *name, ui_file_style::intensity i); - /* Construct a CLI style option with an intensity. */ - cli_style_option (ui_file_style::intensity val); - /* Return a ui_file_style corresponding to the settings in this CLI style. */ ui_file_style style () const;