From 456f9beaadde15da4885551550399b8acc870e54 Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Thu, 7 Jul 2005 13:35:25 +0000 Subject: [PATCH] tree_order_statistics_join.cc: Change map_t to map_type. * testsuite/ext/pb_assoc/example/tree_order_statistics_join.cc: Change map_t to map_type. From-SVN: r101709 --- libstdc++-v3/ChangeLog | 5 +++++ .../ext/pb_assoc/example/tree_order_statistics_join.cc | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 1d0d2ed0450..6704abf38dd 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2005-07-07 David Edelsohn + + * testsuite/ext/pb_assoc/example/tree_order_statistics_join.cc: + Change map_t to map_type. + 2005-07-05 Paolo Carlini Add class __versa_string, a versatile "basic_string-type" class: diff --git a/libstdc++-v3/testsuite/ext/pb_assoc/example/tree_order_statistics_join.cc b/libstdc++-v3/testsuite/ext/pb_assoc/example/tree_order_statistics_join.cc index 3cb6e6099e4..473cfdd35a0 100644 --- a/libstdc++-v3/testsuite/ext/pb_assoc/example/tree_order_statistics_join.cc +++ b/libstdc++-v3/testsuite/ext/pb_assoc/example/tree_order_statistics_join.cc @@ -59,14 +59,14 @@ pb_assoc::tree_assoc_cntnr< pb_assoc::order_statistics_key_cmp >, pb_assoc::splay_tree_ds_tag, pb_assoc::order_statistics_node_updator > -map_t; +map_type; int main() { typedef pb_assoc::order_statistics_key< int> int_order_statistics_key; - map_t s0; + map_type s0; // Insert some entries into s0. @@ -76,13 +76,13 @@ main() // The order of the keys should be: 12, 30, 505. - pb_assoc::find_by_order by_order; + pb_assoc::find_by_order by_order; assert(by_order(s0, 0)->first == 12); assert(by_order(s0, 1)->first == 30); assert(by_order(s0, 2)->first == 505); - map_t s1; + map_type s1; // Insert some entries into s1.