Commit 15eb6a25 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

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: 's avatarEric Pouech <eric.pouech@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 79cd318b
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment