Skip to content

Commit e3c26b0

Browse files
committed
more clang format
1 parent 594fb63 commit e3c26b0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

lldb/include/lldb/Breakpoint/BreakpointLocation.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,8 @@ class BreakpointLocation
322322

323323
/// If this location knows that the virtual stack frame it represents is
324324
/// not frame 0, return the suggested stack frame instead. This will happen
325-
/// when the location's address contains a "virtual inlined call stack" and the
326-
/// breakpoint was set on a file & line that are not at the bottom of that
325+
/// when the location's address contains a "virtual inlined call stack" and
326+
/// the breakpoint was set on a file & line that are not at the bottom of that
327327
/// stack. For now we key off the "preferred line entry" - looking for that
328328
/// in the blocks that start with the stop PC.
329329
/// This version of the API doesn't take an "inlined" parameter because it

lldb/include/lldb/Core/Declaration.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ class Declaration {
8383
///
8484
/// \param[in] declaration
8585
/// The const Declaration object to compare with.
86-
///
86+
///
8787
/// \param[in] full
88-
/// Same meaning as Full in FileSpec::Equal. True means an empty
88+
/// Same meaning as Full in FileSpec::Equal. True means an empty
8989
/// directory is not equal to a specified one, false means it is equal.
9090
///
9191
/// \return

lldb/include/lldb/Target/ThreadPlanStepInRange.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class ThreadPlanStepInRange : public ThreadPlanStepRange,
8181
// a switch in for this if there's
8282
// demand for that.
8383
LazyBool m_virtual_step; // true if we've just done a "virtual step", i.e.
84-
// just moved the inline stack depth.
84+
// just moved the inline stack depth.
8585
ConstString m_step_into_target;
8686
ThreadPlanStepInRange(const ThreadPlanStepInRange &) = delete;
8787
const ThreadPlanStepInRange &

lldb/source/Breakpoint/BreakpointSite.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ std::optional<uint32_t> BreakpointSite::GetSuggestedStackFrameIndex() {
9292
std::optional<uint32_t> result;
9393
std::lock_guard<std::recursive_mutex> guard(m_constituents_mutex);
9494
for (BreakpointLocationSP loc_sp : m_constituents.BreakpointLocations()) {
95-
std::optional<uint32_t> loc_frame_index
96-
= loc_sp->GetSuggestedStackFrameIndex();
95+
std::optional<uint32_t> loc_frame_index =
96+
loc_sp->GetSuggestedStackFrameIndex();
9797
if (loc_frame_index) {
9898
if (result)
9999
result = std::max(*loc_frame_index, *result);

lldb/source/Core/Declaration.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ int Declaration::Compare(const Declaration &a, const Declaration &b) {
7070
return 0;
7171
}
7272

73-
bool Declaration::FileAndLineEqual(const Declaration &declaration, bool full)
74-
const {
73+
bool Declaration::FileAndLineEqual(const Declaration &declaration,
74+
bool full) const {
7575
int file_compare = FileSpec::Compare(this->m_file, declaration.m_file, full);
7676
return file_compare == 0 && this->m_line == declaration.m_line;
7777
}

0 commit comments

Comments
 (0)