Get the type of the initializer_list right.

[SVN r53550]
This commit is contained in:
Daniel James
2009-06-01 19:17:49 +00:00
parent 78ea3024b5
commit 2b09a34467

View File

@ -107,7 +107,7 @@ UNORDERED_TEST(assign_tests2,
UNORDERED_AUTO_TEST(assign_default_initializer_list) {
std::cerr<<"Initializer List Tests\n";
std::initializer_list<std::pair<int, int> > init;
std::initializer_list<std::pair<int const, int> > init;
boost::unordered_map<int, int> x1;
x1[25] = 3;
x1[16] = 10;