Skip to content

Commit c898a98

Browse files
committed
fixup! add back missing brace
1 parent fdba582 commit c898a98

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2843,9 +2843,9 @@ void ObjectFileMachO::ParseSymtab(Symtab &symtab) {
28432843
symbol_name, symbol_name_non_abi_mangled,
28442844
type)) {
28452845
demangled_is_synthesized = true;
2846-
} else if (nlist.n_value != 0)
2847-
symbol_section = section_info.GetSection(
2848-
nlist.n_sect, nlist.n_value);
2846+
} else if (nlist.n_value != 0) {
2847+
symbol_section = section_info.GetSection(
2848+
nlist.n_sect, nlist.n_value);
28492849
type = eSymbolTypeData;
28502850
}
28512851
break;
@@ -3643,9 +3643,9 @@ void ObjectFileMachO::ParseSymtab(Symtab &symtab) {
36433643
if (TryParseV2ObjCMetadataSymbol(symbol_name,
36443644
symbol_name_non_abi_mangled, type)) {
36453645
demangled_is_synthesized = true;
3646-
} else if (nlist.n_value != 0)
3647-
symbol_section =
3648-
section_info.GetSection(nlist.n_sect, nlist.n_value);
3646+
} else if (nlist.n_value != 0) {
3647+
symbol_section =
3648+
section_info.GetSection(nlist.n_sect, nlist.n_value);
36493649
type = eSymbolTypeData;
36503650
}
36513651
} break;

0 commit comments

Comments
 (0)