From db9dfed10717c86533c91de7a048c554fdca2467 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 29 Jul 2013 21:40:30 +0000 Subject: [PATCH] Test update for #8892 + changelog updated. [SVN r85169] --- doc/container.qbk | 7 +++++++ test/flat_tree_test.cpp | 7 +++++++ test/tree_test.cpp | 8 +++++++- 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/doc/container.qbk b/doc/container.qbk index ff18ba4..bc65a48 100644 --- a/doc/container.qbk +++ b/doc/container.qbk @@ -688,6 +688,13 @@ use [*Boost.Container]? There are several reasons for that: [section:release_notes Release Notes] +[section:release_notes_boost_1_55_00 Boost 1.55 Release] + +* Fixed bugs [@https://svn.boost.org/trac/boost/ticket/8892 #8892], + [@https://svn.boost.org/trac/boost/ticket/8473 #8473]. + +[endsect] + [section:release_notes_boost_1_54_00 Boost 1.54 Release] * Added experimental `static_vector` class, based on Andrew Hundt's and Adam Wulkiewicz's diff --git a/test/flat_tree_test.cpp b/test/flat_tree_test.cpp index 5854b59..146285c 100644 --- a/test/flat_tree_test.cpp +++ b/test/flat_tree_test.cpp @@ -475,6 +475,13 @@ int main() { using namespace boost::container::test; + //Allocator argument container + { + flat_set set_((std::allocator())); + flat_multiset multiset_((std::allocator())); + flat_map map_((std::allocator >())); + flat_multimap multimap_((std::allocator >())); + } //Now test move semantics { test_move >(); diff --git a/test/tree_test.cpp b/test/tree_test.cpp index dca5a31..60d593f 100644 --- a/test/tree_test.cpp +++ b/test/tree_test.cpp @@ -247,6 +247,13 @@ int main () map map_; multimap multimap_; } + //Allocator argument container + { + set set_((std::allocator())); + multiset multiset_((std::allocator())); + map map_((std::allocator >())); + multimap multimap_((std::allocator >())); + } //Now test move semantics { test_move >(); @@ -255,7 +262,6 @@ int main () test_move >(); } - //using namespace boost::container::detail; if(0 != test::set_test