This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH 1/2] add unique_ptr header
- From: Jonathan Wakely <jwakely at redhat dot com>
- To: Trevor Saunders <tbsaunde at tbsaunde dot org>
- Cc: David Malcolm <dmalcolm at redhat dot com>, tbsaunde+gcc at tbsaunde dot org, gcc-patches at gcc dot gnu dot org, palves at redhat dot com
- Date: Fri, 4 Aug 2017 20:55:50 +0100
- Subject: Re: [PATCH 1/2] add unique_ptr header
- Authentication-results: sourceware.org; auth=none
- 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 at redhat dot com
- Dmarc-filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 34108C058EB1
- References: <20170731234607.21952-1-tbsaunde+gcc@tbsaunde.org> <20170731234607.21952-2-tbsaunde+gcc@tbsaunde.org> <1501598453.4181.10.camel@redhat.com> <20170802030930.4vh5am6h23zm7f6d@ball>
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).