@@ -472,7 +472,7 @@ BOOST_AUTO_TEST_CASE(issue2_compare) {
472472}
473473
474474BOOST_AUTO_TEST_CASE (issue2_duplication) {
475- std::vector<std::pair<int , int >> a;
475+ std::vector<std::pair<int , int > > a;
476476
477477 for (int i = 0 ; i < 10000 ; ++i) {
478478 int first = static_cast <unsigned short >(rand ());
@@ -481,7 +481,7 @@ BOOST_AUTO_TEST_CASE(issue2_duplication) {
481481 a.push_back (std::make_pair (first, second));
482482 }
483483
484- std::vector<std::pair<int , int >> expected (a);
484+ std::vector<std::pair<int , int > > expected (a);
485485
486486 std::sort (expected.begin (), expected.end (), &less_in_pair);
487487 timsort (a.begin (), a.end (), &less_in_pair);
@@ -585,7 +585,7 @@ template <typename T> struct move_only {
585585BOOST_AUTO_TEST_CASE (shuffle10k_for_move_only_types) {
586586 const int size = 1024 * 10 ; // should be even number of elements
587587
588- std::vector<move_only<int >> a;
588+ std::vector<move_only<int > > a;
589589 for (int i = 0 ; i < size; ++i) {
590590 a.push_back ((i + 1 ) * 10 );
591591 }
0 commit comments