@@ -416,31 +416,31 @@ class BreakpointLocation
416416 // /< Breakpoint options pointer, nullptr if we're using our breakpoint's
417417 // / options.
418418 std::unique_ptr<BreakpointOptions> m_options_up;
419- // /< Our breakpoint site (it may be shared by more than one location.)
419+ // /< Our breakpoint site (it may be shared by more than one location.)
420420 lldb::BreakpointSiteSP m_bp_site_sp;
421421 // /< The compiled expression to use in testing our condition.
422422 lldb::UserExpressionSP m_user_expression_sp;
423423 // /< Guards parsing and evaluation of the condition, which could be evaluated
424- // / by multiple processes.
424+ // / by multiple processes.
425425 std::mutex m_condition_mutex;
426- // /< For testing whether the condition source code changed.
426+ // /< For testing whether the condition source code changed.
427427 size_t m_condition_hash;
428428 // /< Breakpoint location ID.
429429 lldb::break_id_t m_loc_id;
430430 // /< Number of times this breakpoint location has been hit.
431- StoppointHitCounter m_hit_counter;
431+ StoppointHitCounter m_hit_counter;
432432 // / If this exists, use it to print the stop description rather than the
433433 // / LineEntry m_address resolves to directly. Use this for instance when the
434434 // / location was given somewhere in the virtual inlined call stack since the
435435 // / Address always resolves to the lowest entry in the stack.
436436 std::optional<LineEntry> m_preferred_line_entry;
437- // / Because Facade locations don't have sites we can't use the presence of
438- // / the site to mean this breakpoint is valid, but must manage the state
437+ // / Because Facade locations don't have sites we can't use the presence of
438+ // / the site to mean this breakpoint is valid, but must manage the state
439439 // / directly.
440440 bool m_is_valid = true ;
441441 // / Facade locations aren't directly triggered and don't have a breakpoint
442- // / site. They are a useful fiction when you want to represent the stop
443- // / location as something lldb can't naturally stop at.
442+ // / site. They are a useful fiction when you want to represent the stop
443+ // / location as something lldb can't naturally stop at.
444444 bool m_is_facade = false ;
445445
446446 void SetInvalid () { m_is_valid = false ; }
0 commit comments