mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-24 02:32:16 +00:00
Fix access to alternate die -> decl map
* src/abg-dwarf-reader.cc (read_context::alternate_die_decl_map): Return the real alternate die decl map, rather than what we was doing previously b/c of a stupid copy/paste. Oh well. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
parent
b13345fd86
commit
73ffa4f562
@ -1501,7 +1501,7 @@ public:
|
||||
/// @return the die -> decl map of the alternate debug info file.
|
||||
const die_decl_map_type&
|
||||
alternate_die_decl_map() const
|
||||
{return die_decl_map_;}
|
||||
{return alternate_die_decl_map_;}
|
||||
|
||||
/// Return the map that associates a decl to the DIE that represents
|
||||
/// it. This if for DIEs that come from the alternate debug info file.
|
||||
@ -1513,7 +1513,7 @@ public:
|
||||
/// @return the die -> decl map of the alternate debug info file.
|
||||
die_decl_map_type&
|
||||
alternate_die_decl_map()
|
||||
{return die_decl_map_;}
|
||||
{return alternate_die_decl_map_;}
|
||||
|
||||
private:
|
||||
/// Add an entry to the die->decl map for DIEs coming from the main
|
||||
|
Loading…
Reference in New Issue
Block a user