** 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

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