[libcxx-commits] [libcxx] [libc++][test] Fix issues found by MSVC's STL (PR #131787)
Stephan T. Lavavej via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Mar 22 06:32:49 PDT 2025
================
@@ -71,7 +71,7 @@ TEST_CONSTEXPR_CXX20 bool tests() {
// Test with various allocators and different `size_type`s
{
test(std::vector<bool>());
- test(std::vector<bool, std::allocator<int> >());
+ test(std::vector<bool, std::allocator<bool> >());
----------------
StephanTLavavej wrote:
This is [LWG-4228](https://cplusplus.github.io/LWG/issue4228).
https://github.com/llvm/llvm-project/pull/131787
More information about the libcxx-commits
mailing list