diff options
author | Kazu Hirata <kazu@google.com> | 2022-07-24 12:27:09 -0700 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2022-07-24 12:27:09 -0700 |
commit | 1d9231de70faa69625216a53cd306f20be4cfa75 (patch) | |
tree | ac46dcc749c3bada44522e16f5ab92e67e741937 /lldb | |
parent | [lldb] Use nullptr instead of NULL (NFC) (diff) | |
download | llvm-project-1d9231de70faa69625216a53cd306f20be4cfa75.tar.gz llvm-project-1d9231de70faa69625216a53cd306f20be4cfa75.tar.bz2 llvm-project-1d9231de70faa69625216a53cd306f20be4cfa75.zip |
[lldb] Remove redundant member initialization (NFC)
Identified with readability-redundant-member-init.
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/source/Commands/CommandObjectDisassemble.cpp | 3 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectMemory.cpp | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/lldb/source/Commands/CommandObjectDisassemble.cpp b/lldb/source/Commands/CommandObjectDisassemble.cpp index a11e2b719727..e65e12fe557a 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; diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 0fb50420f70f..083309121b66 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -187,7 +187,7 @@ CommandObjectExpression::CommandObjectExpression( m_format_options(eFormatDefault), m_repl_option(LLDB_OPT_SET_1, false, "repl", 'r', "Drop into REPL", false, true), - m_command_options(), m_expr_line_count(0) { + m_expr_line_count(0) { SetHelpLong( R"( Single and multi-line expressions: diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp index ca0384cf9453..5051f9aeec85 100644 --- a/lldb/source/Commands/CommandObjectMemory.cpp +++ b/lldb/source/Commands/CommandObjectMemory.cpp @@ -1659,7 +1659,7 @@ class CommandObjectMemoryRegion : public CommandObjectParsed { public: class OptionGroupMemoryRegion : public OptionGroup { public: - OptionGroupMemoryRegion() : OptionGroup(), m_all(false, false) {} + OptionGroupMemoryRegion() : m_all(false, false) {} ~OptionGroupMemoryRegion() override = default; |