dbghelp/dwarf: Handle C++ rvalue reference type as a reference.
As we don't handle C++ references yet, it'll be a pointer in the end. Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
79cd318b77
commit
15eb6a2560
|
@ -2343,6 +2343,7 @@ static void dwarf2_load_one_entry(dwarf2_debug_info_t* di)
|
|||
dwarf2_parse_unspecified_type(di);
|
||||
break;
|
||||
case DW_TAG_reference_type:
|
||||
case DW_TAG_rvalue_reference_type:
|
||||
dwarf2_parse_reference_type(di);
|
||||
break;
|
||||
case DW_TAG_enumeration_type:
|
||||
|
|
Loading…
Reference in New Issue