-
- Downloads
libstdc++: Implement proposed resolution to LWG 3548
This has been tentatively approved by LWG. The deleter from a unique_ptr can be moved into the shared_ptr (at least, since LWG 2802). This uses std::forward<_Del>(__r.get_deleter()) not std::move(__r.get_deleter()) because we don't want to convert the deleter to an rvalue when _Del is an lvalue reference type. This also adds a missing is_move_constructible_v<D> constraint to the shared_ptr(unique_ptr<Y, D>&&) constructor, which is inherited from the shared_ptr(Y*, D) constructor due to the use of "equivalent to" in the specified effects. libstdc++-v3/ChangeLog: * include/bits/shared_ptr_base.h (__shared_count(unique_ptr&&)): Initialize a non-reference deleter from an rvalue, as per LWG 3548. (__shared_ptr::_UniqCompatible): Add missing constraint. * testsuite/20_util/shared_ptr/cons/lwg3548.cc: New test. * testsuite/20_util/shared_ptr/cons/unique_ptr_deleter.cc: Check constraints.
Showing
- libstdc++-v3/include/bits/shared_ptr_base.h 9 additions, 4 deletionslibstdc++-v3/include/bits/shared_ptr_base.h
- libstdc++-v3/testsuite/20_util/shared_ptr/cons/lwg3548.cc 16 additions, 0 deletionslibstdc++-v3/testsuite/20_util/shared_ptr/cons/lwg3548.cc
- libstdc++-v3/testsuite/20_util/shared_ptr/cons/unique_ptr_deleter.cc 16 additions, 1 deletion...3/testsuite/20_util/shared_ptr/cons/unique_ptr_deleter.cc
Loading
Please register or sign in to comment