[Lldb-commits] [lldb] [lldb][NFCI] Remove m_being_created from Breakpoint classes (PR #79716)
via lldb-commits
lldb-commits at lists.llvm.org
Sat Jan 27 16:17:00 PST 2024
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 02d3a799e7eb2997950d6a288a08a5e51ff0ff59 2f5ccf2e8fea01cd60ce521fede82d3789b383eb -- lldb/include/lldb/Breakpoint/Breakpoint.h lldb/include/lldb/Breakpoint/BreakpointLocation.h lldb/include/lldb/Breakpoint/Watchpoint.h lldb/source/Breakpoint/Breakpoint.cpp lldb/source/Breakpoint/BreakpointLocation.cpp lldb/source/Breakpoint/Watchpoint.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/include/lldb/Breakpoint/Watchpoint.h b/lldb/include/lldb/Breakpoint/Watchpoint.h
index fc11a466ba..16b83fbf7f 100644
--- a/lldb/include/lldb/Breakpoint/Watchpoint.h
+++ b/lldb/include/lldb/Breakpoint/Watchpoint.h
@@ -224,9 +224,8 @@ private:
CompilerType m_type;
Status m_error; // An error object describing errors associated with this
// watchpoint.
- WatchpointOptions
- m_options; // Settable watchpoint options, which is a delegate to handle
- // the callback machinery.
+ WatchpointOptions m_options; // Settable watchpoint options, which is a
+ // delegate to handle the callback machinery.
std::unique_ptr<UserExpression> m_condition_up; // The condition to test.
void SetID(lldb::watch_id_t id) { m_id = id; }
``````````
</details>
https://github.com/llvm/llvm-project/pull/79716
More information about the lldb-commits
mailing list