forked from boostorg/unordered
** empty log message **
[SVN r4139]
This commit is contained in:
@@ -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());
|
||||
|
||||
|
Reference in New Issue
Block a user