![]() |
Home | Libraries | People | FAQ | More |
unique_ptr is now marked
with the trivial_abi
attribute when the compiler supports it (Clang targeting Itanium ABI),
so it is passed and returned in registers. This changes the calling convention
so it must be consistent when passing across translation units. Define
BOOST_MOVE_DISABLE_TRIVIAL_ABI
to keep the old calling convention.
Forward declarations of std types cause compilation errors on some platforms #292
adaptive_merge
and adaptive_sort.
unique_ptr's
converting constructor taking the source by value in C++03 compilers
to allow simple conversions from convertible types returned by value.
BOOST_MOVE_BASE utility.
adl_move_swap
utility.
unique_ptr smart
pointer. Thanks to Howard Hinnant for his excellent unique_ptr emulation
code and testsuite.
move_if_noexcept
utility. Thanks to Antony Polukhin for the implementation.