diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectRegister.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectRegister.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lldb/source/Commands/CommandObjectRegister.cpp b/lldb/source/Commands/CommandObjectRegister.cpp index 6fd71c9..933c243 100644 --- a/lldb/source/Commands/CommandObjectRegister.cpp +++ b/lldb/source/Commands/CommandObjectRegister.cpp @@ -43,8 +43,7 @@ public: nullptr, eCommandRequiresFrame | eCommandRequiresRegContext | eCommandProcessMustBeLaunched | eCommandProcessMustBePaused), - m_option_group(), m_format_options(eFormatDefault), - m_command_options() { + m_format_options(eFormatDefault) { CommandArgumentEntry arg; CommandArgumentData register_arg; @@ -232,8 +231,7 @@ protected: class CommandOptions : public OptionGroup { public: CommandOptions() - : OptionGroup(), - set_indexes(OptionValue::ConvertTypeToMask(OptionValue::eTypeUInt64)), + : set_indexes(OptionValue::ConvertTypeToMask(OptionValue::eTypeUInt64)), dump_all_sets(false, false), // Initial and default values are false alternate_name(false, false) {} |