summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRoland McGrath <[email protected]>2009-06-25 20:38:24 -0700
committerRoland McGrath <[email protected]>2009-06-25 20:38:24 -0700
commitfa378da86029e127199ac9b2857ce9ca71445486 (patch)
treef94fba3fcfb9344a73d7a6fa95c9b3c04e34d073 /tests
parent1f073fe89dd30ce83ac3b109236cdf688ab5ddeb (diff)
No longer overload children and attributes as type names.
Diffstat (limited to 'tests')
-rw-r--r--tests/dwarf-print.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dwarf-print.cc b/tests/dwarf-print.cc
index ef2536d8..d37a006a 100644
--- a/tests/dwarf-print.cc
+++ b/tests/dwarf-print.cc
@@ -66,7 +66,7 @@ print_die (const dwarf::debug_info_entry &die,
cout << prefix << "<" << tag << " offset=[" << die.offset () << "]";
- for (dwarf::debug_info_entry::attributes::const_iterator i
+ for (dwarf::debug_info_entry::attributes_type::const_iterator i
= die.attributes ().begin (); i != die.attributes ().end (); ++i)
cout << " " << (*i).to_string ();
@@ -80,7 +80,7 @@ print_die (const dwarf::debug_info_entry &die,
cout << ">\n";
- for (dwarf::debug_info_entry::children::const_iterator i
+ for (dwarf::debug_info_entry::children_type::const_iterator i
= die.children ().begin (); i != die.children ().end (); ++i)
print_die (*i, indent + 1, limit);