aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectDisassemble.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-07-24 12:27:09 -0700
committerKazu Hirata <kazu@google.com>2022-07-24 12:27:09 -0700
commit1d9231de70faa69625216a53cd306f20be4cfa75 (patch)
treeac46dcc749c3bada44522e16f5ab92e67e741937 /lldb/source/Commands/CommandObjectDisassemble.cpp
parent4f8a2194c995acfb4514df39d04c918095f6cd4b (diff)
downloadllvm-1d9231de70faa69625216a53cd306f20be4cfa75.zip
llvm-1d9231de70faa69625216a53cd306f20be4cfa75.tar.gz
llvm-1d9231de70faa69625216a53cd306f20be4cfa75.tar.bz2
[lldb] Remove redundant member initialization (NFC)
Identified with readability-redundant-member-init.
Diffstat (limited to 'lldb/source/Commands/CommandObjectDisassemble.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectDisassemble.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectDisassemble.cpp b/lldb/source/Commands/CommandObjectDisassemble.cpp
index a11e2b7..e65e12fe5 100644
--- a/lldb/source/Commands/CommandObjectDisassemble.cpp
+++ b/lldb/source/Commands/CommandObjectDisassemble.cpp
@@ -216,8 +216,7 @@ CommandObjectDisassemble::CommandObjectDisassemble(
"Disassemble specified instructions in the current target. "
"Defaults to the current function for the current thread and "
"stack frame.",
- "disassemble [<cmd-options>]", eCommandRequiresTarget),
- m_options() {}
+ "disassemble [<cmd-options>]", eCommandRequiresTarget) {}
CommandObjectDisassemble::~CommandObjectDisassemble() = default;