@@ -557,7 +557,8 @@ class Target : public std::enable_shared_from_this<Target>,
557557 TargetEventData (const lldb::TargetSP &target_sp,
558558 const ModuleList &module_list);
559559
560- // Constructor for eBroadcastBitNewTargetCreated events. For this event type:
560+ // Constructor for eBroadcastBitNewTargetCreated events. For this event
561+ // type:
561562 // - target_sp is the parent target (the subject/broadcaster of the event)
562563 // - created_target_sp is the newly created target
563564 TargetEventData (const lldb::TargetSP &target_sp,
@@ -577,15 +578,17 @@ class Target : public std::enable_shared_from_this<Target>,
577578
578579 static lldb::TargetSP GetTargetFromEvent (const Event *event_ptr);
579580
580- // For eBroadcastBitNewTargetCreated events, returns the newly created target.
581- // For other event types, returns an invalid target.
581+ // For eBroadcastBitNewTargetCreated events, returns the newly created
582+ // target. For other event types, returns an invalid target.
582583 static lldb::TargetSP GetCreatedTargetFromEvent (const Event *event_ptr);
583584
584585 static ModuleList GetModuleListFromEvent (const Event *event_ptr);
585586
586587 const lldb::TargetSP &GetTarget () const { return m_target_sp; }
587588
588- const lldb::TargetSP &GetCreatedTarget () const { return m_created_target_sp; }
589+ const lldb::TargetSP &GetCreatedTarget () const {
590+ return m_created_target_sp;
591+ }
589592
590593 const ModuleList &GetModuleList () const { return m_module_list; }
591594
0 commit comments