summaryrefslogtreecommitdiff
path: root/libstdc++-v3/ChangeLog
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2012-11-05 21:10:27 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2012-11-05 21:10:27 +0000
commitb41dd924b7c5590e4e2089fa6733c70522f505df (patch)
tree553f439a5157ae50ed27353875aa3cac4fd0c23b /libstdc++-v3/ChangeLog
parent6a2dcb1ff09cc7cdb473d4f864413da155ef480c (diff)
downloadgcc-b41dd924b7c5590e4e2089fa6733c70522f505df.tar.gz
* include/profile/forward_list: Update to meet allocator-aware
requirements. * include/debug/forward_list: Likewise. * include/debug/vector: Verify allocators are swapped or equal. * include/debug/macros.h (__glibcxx_check_equal_allocs): Define. * include/debug/formatter.h: Add new debug message. * src/c++11/debug.cc: Likewise. * testsuite/23_containers/forward_list/allocator/swap.cc: Do not swap containers with non-propagating, non-equal allocators. * testsuite/23_containers/vector/allocator/swap.cc: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193186 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/ChangeLog')
-rw-r--r--libstdc++-v3/ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 521671b2162..4938ace6654 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,16 @@
+2012-11-05 Jonathan Wakely <jwakely.gcc@gmail.com>
+
+ * include/profile/forward_list: Update to meet allocator-aware
+ requirements.
+ * include/debug/forward_list: Likewise.
+ * include/debug/vector: Verify allocators are swapped or equal.
+ * include/debug/macros.h (__glibcxx_check_equal_allocs): Define.
+ * include/debug/formatter.h: Add new debug message.
+ * src/c++11/debug.cc: Likewise.
+ * testsuite/23_containers/forward_list/allocator/swap.cc: Do not
+ swap containers with non-propagating, non-equal allocators.
+ * testsuite/23_containers/vector/allocator/swap.cc: Likewise.
+
2012-11-05 Benjamin Kosnik <bkoz@redhat.com>
Oleg Smolsky <oleg@smolsky.net>