summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/util/performance/priority_queue/timing
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/testsuite/util/performance/priority_queue/timing')
-rw-r--r--libstdc++-v3/testsuite/util/performance/priority_queue/timing/join_test.hpp4
-rw-r--r--libstdc++-v3/testsuite/util/performance/priority_queue/timing/modify_test.hpp8
-rw-r--r--libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_pop_test.hpp8
-rw-r--r--libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_test.hpp8
4 files changed, 14 insertions, 14 deletions
diff --git a/libstdc++-v3/testsuite/util/performance/priority_queue/timing/join_test.hpp b/libstdc++-v3/testsuite/util/performance/priority_queue/timing/join_test.hpp
index ffa1187dde4..cd8135dba55 100644
--- a/libstdc++-v3/testsuite/util/performance/priority_queue/timing/join_test.hpp
+++ b/libstdc++-v3/testsuite/util/performance/priority_queue/timing/join_test.hpp
@@ -128,7 +128,7 @@ namespace pb_ds
template<typename Cntnr>
void
- operator()(pb_ds::detail::type_to_type<Cntnr>)
+ operator()(__gnu_cxx::typelist::detail::type_to_type<Cntnr>)
{
using pb_ds::test::detail::double_push_functor;
using pb_ds::test::detail::double_push_join_functor;
@@ -159,7 +159,7 @@ namespace pb_ds
template<typename Cntnr>
void
- join(pb_ds::detail::type_to_type<Cntnr>, It b, It e)
+ join(__gnu_cxx::typelist::detail::type_to_type<Cntnr>, It b, It e)
{
Cntnr cntnr;
typedef typename Cntnr::const_reference const_reference;
diff --git a/libstdc++-v3/testsuite/util/performance/priority_queue/timing/modify_test.hpp b/libstdc++-v3/testsuite/util/performance/priority_queue/timing/modify_test.hpp
index 8694f995769..25fc4167c5f 100644
--- a/libstdc++-v3/testsuite/util/performance/priority_queue/timing/modify_test.hpp
+++ b/libstdc++-v3/testsuite/util/performance/priority_queue/timing/modify_test.hpp
@@ -283,14 +283,14 @@ namespace pb_ds
template<typename Cntnr>
void
- operator()(pb_ds::detail::type_to_type<Cntnr>);
+ operator()(__gnu_cxx::typelist::detail::type_to_type<Cntnr>);
private:
modify_test(const modify_test& );
template<typename Cntnr>
void
- modify(pb_ds::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e);
+ modify(__gnu_cxx::typelist::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e);
private:
const It m_ins_b;
@@ -316,7 +316,7 @@ namespace pb_ds
template<typename Cntnr>
void
PB_DS_CLASS_C_DEC::
- operator()(pb_ds::detail::type_to_type<Cntnr>)
+ operator()(__gnu_cxx::typelist::detail::type_to_type<Cntnr>)
{
xml_result_set_performance_formatter res_set_fmt(
string_form<Cntnr>::name(),
@@ -367,7 +367,7 @@ namespace pb_ds
template<typename Cntnr>
void
PB_DS_CLASS_C_DEC::
- modify(pb_ds::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e)
+ modify(__gnu_cxx::typelist::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e)
{
Cntnr cntnr;
diff --git a/libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_pop_test.hpp b/libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_pop_test.hpp
index 779ee672926..21869517cb3 100644
--- a/libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_pop_test.hpp
+++ b/libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_pop_test.hpp
@@ -107,14 +107,14 @@ namespace pb_ds
template<typename Cntnr>
void
- operator()(pb_ds::detail::type_to_type<Cntnr>);
+ operator()(__gnu_cxx::typelist::detail::type_to_type<Cntnr>);
private:
push_pop_test(const push_pop_test& );
template<typename Cntnr>
void
- push(pb_ds::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e);
+ push(__gnu_cxx::typelist::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e);
private:
const It m_ins_b;
@@ -137,7 +137,7 @@ namespace pb_ds
template<typename Cntnr>
void
PB_DS_CLASS_C_DEC::
- operator()(pb_ds::detail::type_to_type<Cntnr>)
+ operator()(__gnu_cxx::typelist::detail::type_to_type<Cntnr>)
{
xml_result_set_performance_formatter res_set_fmt(
string_form<Cntnr>::name(),
@@ -165,7 +165,7 @@ namespace pb_ds
template<typename Cntnr>
void
PB_DS_CLASS_C_DEC::
- push(pb_ds::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e)
+ push(__gnu_cxx::typelist::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e)
{
Cntnr cntnr;
diff --git a/libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_test.hpp b/libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_test.hpp
index 29dcd7740ce..fbcc340fad3 100644
--- a/libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_test.hpp
+++ b/libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_test.hpp
@@ -104,14 +104,14 @@ namespace pb_ds
template<typename Cntnr>
void
- operator()(pb_ds::detail::type_to_type<Cntnr>);
+ operator()(__gnu_cxx::typelist::detail::type_to_type<Cntnr>);
private:
push_test(const push_test& );
template<typename Cntnr>
void
- push(pb_ds::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e);
+ push(__gnu_cxx::typelist::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e);
private:
const It m_ins_b;
@@ -134,7 +134,7 @@ namespace pb_ds
template<typename Cntnr>
void
PB_DS_CLASS_C_DEC::
- operator()(pb_ds::detail::type_to_type<Cntnr>)
+ operator()(__gnu_cxx::typelist::detail::type_to_type<Cntnr>)
{
xml_result_set_performance_formatter res_set_fmt(
string_form<Cntnr>::name(),
@@ -162,7 +162,7 @@ namespace pb_ds
template<typename Cntnr>
void
PB_DS_CLASS_C_DEC::
- push(pb_ds::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e)
+ push(__gnu_cxx::typelist::detail::type_to_type<Cntnr>, It ins_it_b, It ins_it_e)
{
Cntnr cntnr;