Eric Pouech : dbghelp/dwarf: Handle C++ rvalue reference type as a reference.

Alexandre Julliard julliard at winehq.org
Tue Sep 21 15:59:04 CDT 2021


Module: wine
Branch: master
Commit: 15eb6a2560e61f02cd2b471dcb00ff28b343be3a
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=15eb6a2560e61f02cd2b471dcb00ff28b343be3a

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Tue Sep 21 08:00:36 2021 +0200

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 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dbghelp/dwarf.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c
index c409f39d80b..192dbf59814 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:




More information about the wine-cvs mailing list