@@ -548,9 +548,9 @@ class CommandObjectBreakpointCommandList : public CommandObjectParsed {
548
548
549
549
protected:
550
550
void DoExecute (Args &command, CommandReturnObject &result) override {
551
- Target * target = & GetTarget ();
551
+ Target & target = GetTarget ();
552
552
553
- const BreakpointList &breakpoints = target-> GetBreakpointList ();
553
+ const BreakpointList &breakpoints = target. GetBreakpointList ();
554
554
size_t num_breakpoints = breakpoints.GetSize ();
555
555
556
556
if (num_breakpoints == 0 ) {
@@ -566,7 +566,7 @@ class CommandObjectBreakpointCommandList : public CommandObjectParsed {
566
566
567
567
BreakpointIDList valid_bp_ids;
568
568
CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs (
569
- command, target, result, &valid_bp_ids,
569
+ command, & target, result, &valid_bp_ids,
570
570
BreakpointName::Permissions::PermissionKinds::listPerm);
571
571
572
572
if (result.Succeeded ()) {
@@ -575,7 +575,7 @@ class CommandObjectBreakpointCommandList : public CommandObjectParsed {
575
575
BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i);
576
576
if (cur_bp_id.GetBreakpointID () != LLDB_INVALID_BREAK_ID) {
577
577
Breakpoint *bp =
578
- target-> GetBreakpointByID (cur_bp_id.GetBreakpointID ()).get ();
578
+ target. GetBreakpointByID (cur_bp_id.GetBreakpointID ()).get ();
579
579
580
580
if (bp) {
581
581
BreakpointLocationSP bp_loc_sp;
0 commit comments