[libc++][test] Non-rebindable test_alloc
in string.capacity/deallocate_size.pass.cpp
#113609
Labels
test_alloc
in string.capacity/deallocate_size.pass.cpp
#113609
This
test_alloc
has arebind
struct, but not a rebinding constructor:llvm-project/libcxx/test/std/strings/basic.string/string.capacity/deallocate_size.pass.cpp
Lines 22 to 46 in 564fd62
This fails to meet the allocator requirements. MSVC's STL rejects this because we attempt to rebind the allocator (to an internal "container proxy" type).
I observe other requirement deficiencies here (no comparison operators) but the rebinding one is the specific problem for us.
The text was updated successfully, but these errors were encountered: