From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 74902 invoked by alias); 16 Jul 2017 17:43: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 74889 invoked by uid 89); 16 Jul 2017 17:43:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 spammy=33pm, 33PM X-HELO: paperclip.tbsaunde.org Received: from tbsaunde.org (HELO paperclip.tbsaunde.org) (66.228.47.254) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 16 Jul 2017 17:43:54 +0000 Received: from ball (24-212-226-29.cable.teksavvy.com [24.212.226.29]) by paperclip.tbsaunde.org (Postfix) with ESMTPSA id BB128C07F; Sun, 16 Jul 2017 17:43:52 +0000 (UTC) Date: Sun, 16 Jul 2017 17:43:00 -0000 From: Trevor Saunders To: Pedro Alves Cc: gdb-patches@sourceware.org Subject: Re: [PATCH] C++ify dwarf2_per_objfile Message-ID: <20170716174325.fmr33eerq2erbthc@ball> References: <1500059913-6956-1-git-send-email-palves@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1500059913-6956-1-git-send-email-palves@redhat.com> User-Agent: NeoMutt/20170609 (1.8.3) X-SW-Source: 2017-07/txt/msg00215.txt.bz2 On Fri, Jul 14, 2017 at 08:18:33PM +0100, Pedro Alves wrote: > - /* Non-zero if we've check for whether there is a DWP file. */ > - int dwp_checked; > + /* True if we've check for whether there is a DWP file. */ > + bool dwp_checked; is this one initialized somewhere? it wasn't obvious to me the ctor did it. Trev