https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115854
--- Comment #5 from GCC Commits <cvs-commit at gcc dot gnu.org> --- The releases/gcc-14 branch has been updated by Jonathan Wakely <r...@gcc.gnu.org>: https://gcc.gnu.org/g:11b5ad5ba712c9c22e6eced415c839c67f617e52 commit r14-10533-g11b5ad5ba712c9c22e6eced415c839c67f617e52 Author: Jonathan Wakely <jwak...@redhat.com> Date: Wed Jul 10 10:29:52 2024 +0100 libstdc++: Use direct-initialization for std::vector<bool>'s allocator [PR115854] The consensus in the standard committee is that this change shouldn't be necessary, and the Allocator requirements should require conversions between rebound allocators to be implicit. But we can make it work for now anyway. libstdc++-v3/ChangeLog: PR libstdc++/115854 * include/bits/stl_bvector.h (_Bvector_base): Convert allocator to rebound type explicitly. * testsuite/23_containers/vector/allocator/115854.cc: New test. * testsuite/23_containers/vector/bool/allocator/115854.cc: New test. (cherry picked from commit c5efc6eca8e3eee7038ae218cf7e2dbe9ed9d82a)