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/source/Commands/CommandObjectExpression.cpp | |
parent | 4f8a2194c995acfb4514df39d04c918095f6cd4b (diff) | |
download | llvm-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/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 0fb5042..0833091 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: |