Commit df5ff98b authored by David Heidelberger's avatar David Heidelberger Committed by Alexandre Julliard

dbghelp: Implement DW_TAG_const_type in dwarf2_parse_udt_type.

parent 1bec6ab0
......@@ -1453,6 +1453,9 @@ static struct symt* dwarf2_parse_udt_type(dwarf2_parse_context_t* ctx,
case DW_TAG_subprogram:
dwarf2_parse_subprogram(ctx, child);
break;
case DW_TAG_const_type:
dwarf2_parse_const_type(ctx, child);
break;
case DW_TAG_structure_type:
case DW_TAG_class_type:
case DW_TAG_union_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