From: Jonathan Wakely Date: Sat, 11 Jun 2011 13:49:17 +0000 (+0000) Subject: typedefs.cc: Check for allocator_type and value_type. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b6a1daaa77a7c1499593fc8d51cdc7dc5e1d5862;p=gcc.git typedefs.cc: Check for allocator_type and value_type. 2011-06-11 Jonathan Wakely * testsuite/20_util/allocator_traits/requirements/typedefs.cc: Check for allocator_type and value_type. From-SVN: r174953 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b62df013c10..cb3f5abfb6a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2011-06-11 Jonathan Wakely + + * testsuite/20_util/allocator_traits/requirements/typedefs.cc: Check + for allocator_type and value_type. + 2011-06-11 Jonathan Wakely * testsuite/30_threads/packaged_task/uses_allocator.cc: New. diff --git a/libstdc++-v3/testsuite/20_util/allocator_traits/requirements/typedefs.cc b/libstdc++-v3/testsuite/20_util/allocator_traits/requirements/typedefs.cc index 346824ffc2b..89f57f44792 100644 --- a/libstdc++-v3/testsuite/20_util/allocator_traits/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/20_util/allocator_traits/requirements/typedefs.cc @@ -29,6 +29,8 @@ void test01() { // Check for required typedefs typedef std::allocator_traits test_type; + typedef typename test_type::allocator_type allocator_type; + typedef typename test_type::value_type value_type; typedef typename test_type::pointer pointer; typedef typename test_type::const_pointer const_pointer; typedef typename test_type::void_pointer void_pointer;