summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_test.hpp
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@redhat.com>2007-09-12 23:06:27 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2007-09-12 23:06:27 +0000
commit5e11f978edb440183b510ee5ead717a03d6fcc6a (patch)
tree75559fc602e22bd583e99b2b7f544633716530f5 /libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_test.hpp
parentc93646bd3ca88aa2cc99cc5a2090dc6ea4b39688 (diff)
downloadgcc-5e11f978edb440183b510ee5ead717a03d6fcc6a.tar.gz
*: Change namespace pb_ds to __gnu_pbds.
2007-09-12 Benjamin Kosnik <bkoz@redhat.com> * include/ext/pb_ds/*: Change namespace pb_ds to __gnu_pbds. * docs/html/ext/pb_ds/*: Same. * testsuite/ext/pb_ds/*: Same. * testsuite/performance/ext/pb_ds/*: Same. * testsuite/util/*: Same. From-SVN: r128448
Diffstat (limited to 'libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_test.hpp')
-rw-r--r--libstdc++-v3/testsuite/util/performance/priority_queue/timing/push_test.hpp10
1 files changed, 5 insertions, 5 deletions
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 d6f280501dd..961c00ec638 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
@@ -53,7 +53,7 @@
#include <common_type/priority_queue/string_form.hpp>
#include <iterator>
-namespace pb_ds
+namespace __gnu_pbds
{
namespace test
{
@@ -85,7 +85,7 @@ namespace pb_ds
} // namespace detail
template<typename It>
- class push_test : private pb_ds::test::detail::timing_test_base
+ class push_test : private __gnu_pbds::test::detail::timing_test_base
{
public:
push_test(It ins_b, size_t ins_vn, size_t ins_vs, size_t ins_vm)
@@ -127,11 +127,11 @@ namespace pb_ds
It ins_it_e = m_ins_b;
std::advance(ins_it_e, v);
- pb_ds::test::detail::push_push_functor<It, Cntnr>
+ __gnu_pbds::test::detail::push_push_functor<It, Cntnr>
fn(ins_it_b, ins_it_e);
const double res =
- pb_ds::test::detail::timing_test_base::operator()(fn);
+ __gnu_pbds::test::detail::timing_test_base::operator()(fn);
res_set_fmt.add_res(v, res / v);
}
@@ -148,7 +148,7 @@ namespace pb_ds
cntnr.push((typename Cntnr::const_reference)(*ins_it));
}
} // namespace test
-} // namespace pb_ds
+} // namespace __gnu_pbds
#endif