From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23933 invoked by alias); 27 Apr 2019 14:31:40 -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 23922 invoked by uid 89); 27 Apr 2019 14:31:39 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-5.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=scrutiny X-HELO: gateway24.websitewelcome.com Received: from gateway24.websitewelcome.com (HELO gateway24.websitewelcome.com) (192.185.50.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 27 Apr 2019 14:31:38 +0000 Received: from cm16.websitewelcome.com (cm16.websitewelcome.com [100.42.49.19]) by gateway24.websitewelcome.com (Postfix) with ESMTP id 5FE881CFC for ; Sat, 27 Apr 2019 09:31:37 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id KOMbhqQz14FKpKOMbhHj2A; Sat, 27 Apr 2019 09:31:37 -0500 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=xxfKXyeiKZG2jfs7Xq/yPlZSvws4tNaRWPpd9i2ssK8=; b=bMwOMRPBBwjEl+Y7LptSyVPjz7 Ag349OV4E2YN3tPIWAX8/izfuCTfCiq0Zs3LY4mgXodLGp4vthXPE1AcTkbb2cY/CCFIdirZ5RX1/ Dtmhnw+aPFtK3GucoTX+ZBldb; Received: from 97-122-168-123.hlrn.qwest.net ([97.122.168.123]:49568 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1hKOMb-0011yo-6k for gdb-patches@sourceware.org; Sat, 27 Apr 2019 09:31:37 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH 0/2] Remove two VECs Date: Sat, 27 Apr 2019 14:31:00 -0000 Message-Id: <20190427143134.14048-1-tom@tromey.com> X-SW-Source: 2019-04/txt/msg00595.txt.bz2 This series removes a couple more uses of VEC from gdb, replacing them with std::vector. I ran this through the buildbot, but I don't think it actually tests any of this code, so extra scrutiny would be appreciated. Tom