summaryrefslogtreecommitdiff
path: root/tests/dwarf-print.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dwarf-print.cc')
-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);