
9 Feb
2013
9 Feb
'13
4:16 p.m.
On Feb 8, 2013, at 11:22 PM, Michel Morin <mimomorin@gmail.com> wrote:
Peter Dimov wrote:
Michel Morin wrote:
`!defined(BOOST_NO_CXX11_SMART_PTR)` does not necessarily mean that the compiler support of rvalue references is available. For example,
How could the standard library have std::unique_ptr without the compiler supporting rvalue references?
Seems like libc++ uses rvalue-ref emulation: http://llvm.org/svn/llvm-project/libcxx/trunk/include/memory
Yeah, but it isn't very good emulation. I don't recommend it. Howard