Skip to content

Commit 740e734

Browse files
committed
Formatting
1 parent 1dfcb05 commit 740e734

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

lldb/include/lldb/Breakpoint/BreakpointLocation.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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; }

lldb/source/Breakpoint/BreakpointLocation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -691,8 +691,8 @@ void BreakpointLocation::GetDescription(Stream *s,
691691
}
692692
}
693693

694-
// FIXME: scripted breakpoint are currently always resolved. Does this seem right?
695-
// If they don't add any scripted locations, we shouldn't consider them
694+
// FIXME: scripted breakpoint are currently always resolved. Does this seem
695+
// right? If they don't add any scripted locations, we shouldn't consider them
696696
// resolved.
697697
bool is_resolved = is_scripted_desc || IsResolved();
698698
// A scripted breakpoint might be resolved but not have a site. Be sure to

0 commit comments

Comments
 (0)