aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely.gcc@gmail.com>2012-11-19 22:35:11 +0000
committerJonathan Wakely <redi@gcc.gnu.org>2012-11-19 22:35:11 +0000
commit0e8330d91d13ed0200ef902c596d349ab1969d19 (patch)
tree54466ba2e2e85e99f473366da28defde77e0ef20 /libstdc++-v3
parent1b5dc776ca574e812ddc229ef085e45e32d924bf (diff)
downloadgcc-0e8330d91d13ed0200ef902c596d349ab1969d19.zip
gcc-0e8330d91d13ed0200ef902c596d349ab1969d19.tar.gz
gcc-0e8330d91d13ed0200ef902c596d349ab1969d19.tar.bz2
typedefs.cc: Check rebind and improve propagate_on_container_move_assignment check.
* testsuite/20_util/allocator/requirements/typedefs.cc: Check rebind and improve propagate_on_container_move_assignment check. From-SVN: r193639
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/testsuite/20_util/allocator/requirements/typedefs.cc9
2 files changed, 12 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 9636bd7..f96cf7a 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,10 @@
2012-11-19 Jonathan Wakely <jwakely.gcc@gmail.com>
+ * testsuite/20_util/allocator/requirements/typedefs.cc: Check rebind
+ and improve propagate_on_container_move_assignment check.
+
+2012-11-19 Jonathan Wakely <jwakely.gcc@gmail.com>
+
* include/bits/stl_algo.h (reverse_copy): Update comment per DR 2074.
* include/bits/unordered_map.h: Apply DR 2005 resolution.
* doc/xml/manual/status_cxx2011.xml: Update per DR 2048.
diff --git a/libstdc++-v3/testsuite/20_util/allocator/requirements/typedefs.cc b/libstdc++-v3/testsuite/20_util/allocator/requirements/typedefs.cc
index 37d5032..78536de 100644
--- a/libstdc++-v3/testsuite/20_util/allocator/requirements/typedefs.cc
+++ b/libstdc++-v3/testsuite/20_util/allocator/requirements/typedefs.cc
@@ -42,5 +42,10 @@ static_assert( is_same<allocator<int>::const_reference, const int&>::value,
static_assert( is_same<allocator<int>::value_type, int>::value,
"value_type" );
-static_assert( allocator<int>::propagate_on_container_move_assignment::value,
- "propagate_on_container_move_assignment is true" );
+static_assert( is_same<allocator<int>::rebind<char>::other,
+ allocator<char>>::value,
+ "rebind::other" );
+
+static_assert( is_same<allocator<int>::propagate_on_container_move_assignment,
+ std::true_type>::value,
+ "propagate_on_container_move_assignment" );