Test update for #8892 + changelog updated.

[SVN r85169]
This commit is contained in:
Ion Gaztañaga
2013-07-29 21:40:30 +00:00
parent 4e92a024fb
commit db9dfed107
3 changed files with 21 additions and 1 deletions

View File

@@ -475,6 +475,13 @@ int main()
{
using namespace boost::container::test;
//Allocator argument container
{
flat_set<int> set_((std::allocator<int>()));
flat_multiset<int> multiset_((std::allocator<int>()));
flat_map<int, int> map_((std::allocator<std::pair<int, int> >()));
flat_multimap<int, int> multimap_((std::allocator<std::pair<int, int> >()));
}
//Now test move semantics
{
test_move<flat_set<recursive_flat_set> >();