]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/performance/ext/pb_ds/random_int_subscript_find_timing.cc
typelist_assoc_container.hpp: Remove, unused.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / performance / ext / pb_ds / random_int_subscript_find_timing.cc
index 5d796c26be26a6d2cd08be0bb8141a236e67a780..8fadbe1d192c30b632d4e85f5af7d1f6f731a737 100644 (file)
@@ -44,7 +44,7 @@
  * Contains test for subscripting random integers.
  */
 
-#include <ext/pb_ds/detail/typelist.hpp>
+#include <ext/typelist.h>
 #include <performance/io/xml_formatter.hpp>
 #include <native_type/assoc/native_hash_map.hpp>
 #include <native_type/assoc/native_map.hpp>
@@ -52,7 +52,6 @@
 #include <rng/twister_rand_gen.hpp>
 #include <common_type/assoc/common_type.hpp>
 #include <performance/assoc/timing/subscript_find_test.hpp>
-#include <ext/pb_ds/detail/typelist.hpp>
 #include <iostream>
 #include <vector>
 
@@ -84,23 +83,23 @@ main(int argc, char* a_p_argv[])
       {
        typedef hash_common_types<int, size_t>::performance_tl tl_t;
        tl_t tl;
-       pb_ds::detail::typelist_apply(tst, tl);
+       __gnu_cxx::typelist::apply(tst, tl);
       }
 
       {
        typedef tree_common_types<int, size_t>::performance_tl tl_t;
        tl_t tl;
-       pb_ds::detail::typelist_apply(tst, tl);
+       __gnu_cxx::typelist::apply(tst, tl);
       }
 
       {
        typedef native_hash_map<int, size_t> native_t;
-       tst(pb_ds::detail::type_to_type<native_t>());
+       tst(__gnu_cxx::typelist::detail::type_to_type<native_t>());
       }
 
       {
        typedef native_map< int, size_t> native_t;
-       tst(pb_ds::detail::type_to_type<native_t>());
+       tst(__gnu_cxx::typelist::detail::type_to_type<native_t>());
       }
     }
   catch (...)