Skip to content

Commit b98e417

Browse files
committed
Fix scope operator ordering
1 parent 2922fed commit b98e417

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
@@ -1655,9 +1655,9 @@ DWARFASTParserClang::GetCPlusPlusQualifiedName(const DWARFDIE &die) {
16551655
case DW_TAG_structure_type:
16561656
case DW_TAG_union_type: {
16571657
if (const char *class_union_struct_name = parent_decl_ctx_die.GetName()) {
1658+
qualified_name.insert(0, "::");
16581659
qualified_name.insert(
16591660
0, GetDIEClassTemplateParams(parent_decl_ctx_die).AsCString(""));
1660-
qualified_name.insert(0, "::");
16611661
qualified_name.insert(0, class_union_struct_name);
16621662
}
16631663
parent_decl_ctx_die = parent_decl_ctx_die.GetParentDeclContextDIE();

0 commit comments

Comments
 (0)