http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51032
Rainer Orth <ro at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |redi at gcc dot gnu.org
--- Comment #5 from Rainer Orth <ro at gcc dot gnu.org> 2011-11-08 17:13:03 UTC
---
A quick reghunt on i386-pc-solaris2.11 and rebuilding debug.cc with -gstabs
reveals that this patch
2011-11-08 Jonathan Wakely <[email protected]>
* include/bits/ptr_traits.h (__rebind): Replace with...
(rebind): Implement using alias-declaration.
* include/ext/pointer.h (__rebind): Replace with...
(rebind): Implement using alias-declaration.
* include/bits/alloc_traits.h (__rebind_alloc, __rebind_traits):
Replace with...
(rebind_alloc, rebind_traits): Implement using alias-declaration.
* include/ext/alloc_traits.h (rebind): Use rebind_alloc instead of
__rebind_alloc.
* include/std/scoped_allocator (rebind): Likewise.
triggered it. Obviously, that cannot be the real culprit, the actual bug is
elsewhere.
Rainer