type_erased_bidrectional.cpp formatting.

This commit is contained in:
Neil Groves
2014-03-04 11:53:13 +00:00
parent bd1fd9610e
commit a4633c2c1e

View File

@ -26,13 +26,23 @@ namespace boost_range_adaptor_type_erased_test
void test_bidirectional()
{
test_type_erased_exercise_buffer_types< std::list<int>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types< std::deque<int>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types< std::vector<int>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types<
std::list<int>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types< std::list<MockType>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types< std::deque<MockType>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types< std::vector<MockType>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types<
std::deque<int>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types<
std::vector<int>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types<
std::list<MockType>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types<
std::deque<MockType>, boost::bidirectional_traversal_tag >();
test_type_erased_exercise_buffer_types<
std::vector<MockType>, boost::bidirectional_traversal_tag >();
}
} // anonymous namespace