diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-10-07 16:20:31 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-10-07 16:20:31 +0000 |
commit | b2544f0a02f13ab8b3fc59ae3b012874aa967974 (patch) | |
tree | 6c413cc39f87696c5a19ad46ef3b952114fd617f /libstdc++-v3 | |
parent | d5301cf2d5a3834c2e17642503f504cc5e2ab248 (diff) | |
download | gcc-b2544f0a02f13ab8b3fc59ae3b012874aa967974.tar.gz |
2011-10-07 Jonathan Wakely <jwakely.gcc@gmail.com>
* testsuite/util/testsuite_allocator.h (uneq_allocator): Add
propagate_on_container_swap typedef for C++0x testing.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@179665 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/util/testsuite_allocator.h | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 1e35102b201..02bb86f27c6 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2011-10-07 Jonathan Wakely <jwakely.gcc@gmail.com> + + * testsuite/util/testsuite_allocator.h (uneq_allocator): Add + propagate_on_container_swap typedef for C++0x testing. + 2011-10-06 Paolo Carlini <paolo.carlini@oracle.com> * testsuite/27_io/ios_base/cons/assign_neg.cc: Tidy dg- directives, diff --git a/libstdc++-v3/testsuite/util/testsuite_allocator.h b/libstdc++-v3/testsuite/util/testsuite_allocator.h index 454108c6e8e..38bfac8adc7 100644 --- a/libstdc++-v3/testsuite/util/testsuite_allocator.h +++ b/libstdc++-v3/testsuite/util/testsuite_allocator.h @@ -256,7 +256,11 @@ namespace __gnu_test typedef Tp& reference; typedef const Tp& const_reference; typedef Tp value_type; - + +#ifdef __GXX_EXPERIMENTAL_CXX0X__ + typedef std::true_type propagate_on_container_swap; +#endif + template<typename Tp1> struct rebind { typedef uneq_allocator<Tp1> other; }; |