11 Nov
2015
11 Nov
'15
10:27 p.m.
On Wed, Nov 11, 2015 at 1:10 PM, Jonathan Wakely
On 11 November 2015 at 19:46, Karen Shaeffer wrote:
Well put. Let's say your project upgrades to g++-5.2. I've never verified this, but isn't it true that you could continue to use std::auto_ptr by compiling with the -std=c++03 flag?
Yes. Or -std=c++11. Or -std=c++14.
That would also be true for libc++. To do otherwise, we wouldn't be able to say that we're "c++11 compliant". If you build with -std=c++11, you should get a C++11 standard library. (modulo bug fixes) -- Marshall