Skip to content

Commit a539254

Browse files
committed
No dangling else's.
1 parent 7ca81ba commit a539254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Breakpoint/Breakpoint.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1043,12 +1043,12 @@ void Breakpoint::GetDescriptionForType(Stream *s, lldb::DescriptionLevel level,
10431043
// The brief description is just the location name (1.2 or whatever). That's
10441044
// pointless to show in the breakpoint's description, so suppress it.
10451045
if (show_locations && level != lldb::eDescriptionLevelBrief) {
1046-
if ((display_type & eDisplayHeader) != 0)
1046+
if ((display_type & eDisplayHeader) != 0) {
10471047
if ((display_type & eDisplayFacade) != 0)
10481048
s->Printf("Facade locations:\n");
10491049
else
10501050
s->Printf("Implementation Locations\n");
1051-
1051+
}
10521052
s->IndentMore();
10531053
for (size_t i = 0; i < num_locations; ++i) {
10541054
BreakpointLocation *loc = GetLocationAtIndex(i, use_facade).get();

0 commit comments

Comments
 (0)