From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 114172 invoked by alias); 27 Feb 2019 20:18:56 -0000 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 Received: (qmail 114155 invoked by uid 89); 27 Feb 2019 20:18:55 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Let X-HELO: gateway20.websitewelcome.com Received: from gateway20.websitewelcome.com (HELO gateway20.websitewelcome.com) (192.185.54.2) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 27 Feb 2019 20:18:54 +0000 Received: from cm17.websitewelcome.com (cm17.websitewelcome.com [100.42.49.20]) by gateway20.websitewelcome.com (Postfix) with ESMTP id A8421400CF480 for ; Wed, 27 Feb 2019 14:18:52 -0600 (CST) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id z5fIgq5tL90onz5fIgAdTF; Wed, 27 Feb 2019 14:18:52 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Message-Id:Date:Subject:To:From:Sender:Reply-To:Cc: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=nDkHBQdiw+KgKimNqEslXPiqdwcj8+6p7AGfwxjVsfI=; b=tNoxb/7QYdMKGqjTStgDIOrPbD SWYUd9Xz8b9laoQKhA/++B4gO44pWCC/TtIxoDBm2hk/WFvx/1o56OY6bkh6Kz5v9aQVo6Gv+n84j /26Vc7dHeB3i42CEyfKmixu8u; Received: from 75-166-85-218.hlrn.qwest.net ([75.166.85.218]:36364 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1gz5fI-004Fi1-Fy for gdb-patches@sourceware.org; Wed, 27 Feb 2019 14:18:52 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH v2 00/22] Remove cleanups Date: Wed, 27 Feb 2019 20:18:00 -0000 Message-Id: <20190227201849.32210-1-tom@tromey.com> X-SW-Source: 2019-02/txt/msg00516.txt.bz2 Here's version 2 of the series to remove (non-final) cleanups. Version 1 was here: https://sourceware.org/ml/gdb-patches/2019-02/msg00193.html This version changes the code to catch exceptions by const reference, and also adds a new patch to rename the exception classes. This turned out to be a bit simpler to do separately. Tested by the buildbot. Let me know what you think. Tom