We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8633433 commit b292649Copy full SHA for b292649
lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
@@ -1590,9 +1590,9 @@ DWARFASTParserClang::GetCPlusPlusQualifiedName(const DWARFDIE &die) {
1590
case DW_TAG_structure_type:
1591
case DW_TAG_union_type: {
1592
if (const char *class_union_struct_name = parent_decl_ctx_die.GetName()) {
1593
+ qualified_name.insert(0, "::");
1594
qualified_name.insert(
1595
0, GetDIEClassTemplateParams(parent_decl_ctx_die).AsCString(""));
- qualified_name.insert(0, "::");
1596
qualified_name.insert(0, class_union_struct_name);
1597
}
1598
parent_decl_ctx_die = parent_decl_ctx_die.GetParentDeclContextDIE();
0 commit comments