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:
Eric Pouech 2021-09-21 08:00:36 +02:00 committed by Alexandre Julliard
parent 79cd318b77
commit 15eb6a2560
1 changed files with 1 additions and 0 deletions

View File

@ -2343,6 +2343,7 @@ static void dwarf2_load_one_entry(dwarf2_debug_info_t* di)
dwarf2_parse_unspecified_type(di); dwarf2_parse_unspecified_type(di);
break; break;
case DW_TAG_reference_type: case DW_TAG_reference_type:
case DW_TAG_rvalue_reference_type:
dwarf2_parse_reference_type(di); dwarf2_parse_reference_type(di);
break; break;
case DW_TAG_enumeration_type: case DW_TAG_enumeration_type: