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 2922fed commit b98e417Copy full SHA for b98e417
lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
@@ -1655,9 +1655,9 @@ DWARFASTParserClang::GetCPlusPlusQualifiedName(const DWARFDIE &die) {
1655
case DW_TAG_structure_type:
1656
case DW_TAG_union_type: {
1657
if (const char *class_union_struct_name = parent_decl_ctx_die.GetName()) {
1658
+ qualified_name.insert(0, "::");
1659
qualified_name.insert(
1660
0, GetDIEClassTemplateParams(parent_decl_ctx_die).AsCString(""));
- qualified_name.insert(0, "::");
1661
qualified_name.insert(0, class_union_struct_name);
1662
}
1663
parent_decl_ctx_die = parent_decl_ctx_die.GetParentDeclContextDIE();
0 commit comments