From: Eric Pouech Subject: [PATCH 9/9] dbghelp/dwarf: Handle C++ rvalue reference type as a reference Message-Id: <163186764915.96492.16103379699819763651.stgit@euterpe> Date: Fri, 17 Sep 2021 10:34:09 +0200 In-Reply-To: <163186755659.96492.14807608023276147451.stgit@euterpe> References: <163186755659.96492.14807608023276147451.stgit@euterpe> (as we don't handle C++ references yet, it'll be a pointer at the end) --- dlls/dbghelp/dwarf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c index 2c9b3a15719..f574cb6c87a 100644 --- a/dlls/dbghelp/dwarf.c +++ b/dlls/dbghelp/dwarf.c @@ -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: