diff options
author | Kazu Hirata <kazu@google.com> | 2025-06-04 22:43:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-04 22:43:05 -0700 |
commit | 0bcf9af5910b5184cc8eae959e5f756f4b342f38 (patch) | |
tree | db29d4c9008185fc55595406f468e6437d45902b /lldb/source/Commands/CommandObjectBreakpoint.cpp | |
parent | ddc8b5419ae61ec8ec7aaef5a4f0cd02d6e10908 (diff) | |
download | llvm-0bcf9af5910b5184cc8eae959e5f756f4b342f38.zip llvm-0bcf9af5910b5184cc8eae959e5f756f4b342f38.tar.gz llvm-0bcf9af5910b5184cc8eae959e5f756f4b342f38.tar.bz2 |
[lldb] Remove an unused local variable (NFC) (#142882)
Note that CommandArgumentEntry is an alias for:
std::vector<CommandArgumentData>
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp index 494d6c5..a0c39cf 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -1094,7 +1094,6 @@ public: interpreter, "breakpoint list", "List some or all breakpoints at configurable levels of detail.", nullptr) { - CommandArgumentEntry arg; CommandArgumentData bp_id_arg; // Define the first (and only) variant of this arg. |