Skip to content

Commit b292649

Browse files
committed
Fix scope operator ordering
1 parent 8633433 commit b292649

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,9 +1590,9 @@ DWARFASTParserClang::GetCPlusPlusQualifiedName(const DWARFDIE &die) {
15901590
case DW_TAG_structure_type:
15911591
case DW_TAG_union_type: {
15921592
if (const char *class_union_struct_name = parent_decl_ctx_die.GetName()) {
1593+
qualified_name.insert(0, "::");
15931594
qualified_name.insert(
15941595
0, GetDIEClassTemplateParams(parent_decl_ctx_die).AsCString(""));
1595-
qualified_name.insert(0, "::");
15961596
qualified_name.insert(0, class_union_struct_name);
15971597
}
15981598
parent_decl_ctx_die = parent_decl_ctx_die.GetParentDeclContextDIE();

0 commit comments

Comments
 (0)