From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 96599 invoked by alias); 4 Aug 2017 19:55:55 -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 94728 invoked by uid 89); 4 Aug 2017 19:55:54 -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 autolearn=ham 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 19:55:53 +0000 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 34108C058EB1; Fri, 4 Aug 2017 19:55:52 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 34108C058EB1 Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.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 8A409619D3; Fri, 4 Aug 2017 19:55:51 +0000 (UTC) Date: Fri, 04 Aug 2017 19:55:00 -0000 From: Jonathan Wakely To: Trevor Saunders Cc: David Malcolm , tbsaunde+gcc@tbsaunde.org, gcc-patches@gcc.gnu.org, palves@redhat.com Subject: Re: [PATCH 1/2] add unique_ptr header Message-ID: <20170804195550.GA26610@redhat.com> References: <20170731234607.21952-1-tbsaunde+gcc@tbsaunde.org> <20170731234607.21952-2-tbsaunde+gcc@tbsaunde.org> <1501598453.4181.10.camel@redhat.com> <20170802030930.4vh5am6h23zm7f6d@ball> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20170802030930.4vh5am6h23zm7f6d@ball> X-Clacks-Overhead: GNU Terry Pratchett User-Agent: Mutt/1.8.3 (2017-05-23) X-SW-Source: 2017-08/txt/msg00412.txt.bz2 On 01/08/17 23:09 -0400, Trevor Saunders wrote: >aiui C++03 is C++98 with a few additions to the stl. Again, STL != C++ Standard Library. C++03 made some important changes to the core language, particularly the value-initialization rules. Most of the library changes were small bug fixes, and most were to locales (which didn't originate in the STL and aren't even templates) and iostreams (which didn't originate in the STL). There were also changes to std::auto_ptr (also not from the STL) which this might rely on (I haven't checked).