** empty log message **

[SVN r4139]
This commit is contained in:
Daniel James
2007-05-19 20:04:14 +00:00
parent 50d3138552
commit e73b90fa86
5 changed files with 23 additions and 9 deletions

View File

@@ -247,9 +247,10 @@ void associative_insert_range_test(X* = 0)
{
std::cerr<<"associative_insert_range_test\n";
typedef std::list<std::pair<typename X::key_type, typename X::mapped_type> > list;
typedef std::list<std::pair<BOOST_DEDUCED_TYPENAME X::key_type, BOOST_DEDUCED_TYPENAME X::mapped_type> > list;
test::random_values<X> v(1000);
list l(v.begin(), v.end());
list l;
std::copy(v.begin(), v.end(), std::back_inserter(l));
X x; x.insert(l.begin(), l.end());