[libcxx-commits] [libcxx] [libc++] Fix shared_ptr rebinding allocators to incomplete types (PR #206145)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jul 9 04:59:37 PDT 2026
================
@@ -410,7 +410,7 @@ class complete_type_allocator {
TEST_CONSTEXPR_CXX20 complete_type_allocator() TEST_NOEXCEPT {}
template <class U>
- TEST_CONSTEXPR_CXX20 explicit complete_type_allocator(complete_type_allocator<U>) TEST_NOEXCEPT {}
+ TEST_CONSTEXPR_CXX20 complete_type_allocator(complete_type_allocator<U>) TEST_NOEXCEPT {}
----------------
philnik777 wrote:
Indeed, I've looked at the wrong line when checking. #208439
https://github.com/llvm/llvm-project/pull/206145
More information about the libcxx-commits
mailing list