summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/performance/23_containers/create_sort/list.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/testsuite/performance/23_containers/create_sort/list.cc')
-rw-r--r--libstdc++-v3/testsuite/performance/23_containers/create_sort/list.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/libstdc++-v3/testsuite/performance/23_containers/create_sort/list.cc b/libstdc++-v3/testsuite/performance/23_containers/create_sort/list.cc
index 02b25cde17f..7a47f32b2ec 100644
--- a/libstdc++-v3/testsuite/performance/23_containers/create_sort/list.cc
+++ b/libstdc++-v3/testsuite/performance/23_containers/create_sort/list.cc
@@ -54,11 +54,9 @@ main()
#endif
typedef __gnu_test::lists<int, thread_type>::type container_types;
-
typedef test_sequence<thread_type> test_type;
test_type test("create_sort");
- __gnu_cxx::typelist::apply<test_type, container_types> applier;
- applier(test);
+ __gnu_cxx::typelist::apply(test, container_types());
return 0;
}