From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 83238 invoked by alias); 4 Aug 2017 18:52:21 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 82918 invoked by uid 89); 4 Aug 2017 18:52:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=no version=3.3.2 spammy=originate X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 04 Aug 2017 18:52:20 +0000 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 1303A6E807; Fri, 4 Aug 2017 18:52:19 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 1303A6E807 Authentication-Results: ext-mx02.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx02.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=jwakely@redhat.com Received: from localhost (unknown [10.33.36.71]) by smtp.corp.redhat.com (Postfix) with ESMTP id ACB375D9CE; Fri, 4 Aug 2017 18:52:18 +0000 (UTC) Date: Fri, 04 Aug 2017 18:52:00 -0000 From: Jonathan Wakely To: tbsaunde+gcc@tbsaunde.org Cc: gcc-patches@gcc.gnu.org, palves@redhat.com Subject: Re: [PATCH 0/2] add unique_ptr class Message-ID: <20170804185217.GA26544@redhat.com> References: <20170731234607.21952-1-tbsaunde+gcc@tbsaunde.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20170731234607.21952-1-tbsaunde+gcc@tbsaunde.org> X-Clacks-Overhead: GNU Terry Pratchett User-Agent: Mutt/1.8.3 (2017-05-23) X-SW-Source: 2017-08/txt/msg00410.txt.bz2 On 31/07/17 19:46 -0400, tbsaunde+gcc@tbsaunde.org wrote: >I've been saying I'd do this for a long time, but I'm finally getting to >importing the C++98 compatable unique_ptr class Pedro wrote for gdb a while >back. I believe the gtl namespace also comes from Pedro, but GNU template >library seems as reasonable as any other name I can come up with. If it's inspired by "STL" then can we call it something else? std::unique_ptr is not part of the STL, because the STL is a library of containers and algorithms from the 1990s. std::unique_ptr is something much newer that doesn't originate in the STL. STL != C++ Standard Library If we want a namespace for GNU utilities, what's wrong with "gnu"?