From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by sourceware.org (Postfix) with ESMTPS id D9DCF3858D39 for ; Mon, 6 Mar 2023 11:29:31 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org D9DCF3858D39 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.de Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out1.suse.de (Postfix) with ESMTP id C72D322048; Mon, 6 Mar 2023 11:29:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1678102170; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=q57QqEC38xReTgr1hFLw1XX07Kl0AqW8JdEjGPn8rSc=; b=XjwsJNs0qfiVCdwAoKOjSx8p0glV+fNTB2g7Nrf06MzK+bm1CkHX8NOVnEn4Hrt5s4Jyk3 ZeRf+gjh6PM0GWLjaM4nNJHyTjUPia/kvi5kdm95d1qPFHry8EC2rDhmN8W29zvJJG2DDZ NkwaMfMqZ2t3Nv+FQpeqpQtMLXbX1Lw= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1678102170; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=q57QqEC38xReTgr1hFLw1XX07Kl0AqW8JdEjGPn8rSc=; b=ioQxnSjC0Xn0e3gX/tE7EyTfD+5FeSarHz3ByyPQSVlW9CVg1FClQKEVh/KqlWBXsRpJHd KoEHnbFtrnjB90AQ== Received: from wotan.suse.de (wotan.suse.de [10.160.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by relay2.suse.de (Postfix) with ESMTPS id B74EC2C141; Mon, 6 Mar 2023 11:29:30 +0000 (UTC) Date: Mon, 6 Mar 2023 11:29:30 +0000 (UTC) From: Richard Biener To: Jakub Jelinek cc: Jonathan Wakely , gcc-patches@gcc.gnu.org Subject: Re: [PATCH] [RFC] RAII auto_mpfr and autp_mpz In-Reply-To: Message-ID: References: <20230306101121.3CFDA13A66@imap2.suse-dmz.suse.de> User-Agent: Alpine 2.22 (LSU 394 2020-01-19) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Spam-Status: No, score=-5.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Mon, 6 Mar 2023, Jakub Jelinek wrote: > On Mon, Mar 06, 2023 at 11:01:18AM +0000, Richard Biener wrote: > > + auto_mpfr &operator=(const auto_mpfr &) = delete; > > + auto_mpz &operator=(const auto_mpz &) = delete; > > Just formatting nit, space before (. > > Looks like nice improvement and thanks Jonathan for the suggestions ;) Good, I've queued it for stage1 unless fortran folks want to pick it up earlier for the purpose of fixing leaks. Richard.