From 8cdcd41e384b4901cd796f7be58c461647e54d18 Mon Sep 17 00:00:00 2001 From: Tatyana Krasnukha Date: Fri, 19 Feb 2021 23:42:42 +0300 Subject: [lldb/Interpreter][NFC] Remove explicit default initialization of members and base classes According to clang-tidy's readability-redundant-member-init. --- lldb/source/Interpreter/CommandObject.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lldb/source/Interpreter/CommandObject.cpp') diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index 9d27de4..22effff 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -42,8 +42,7 @@ CommandObject::CommandObject(CommandInterpreter &interpreter, llvm::StringRef name, llvm::StringRef help, llvm::StringRef syntax, uint32_t flags) : m_interpreter(interpreter), m_cmd_name(std::string(name)), - m_cmd_help_short(), m_cmd_help_long(), m_cmd_syntax(), m_flags(flags), - m_arguments(), m_deprecated_command_override_callback(nullptr), + m_flags(flags), m_deprecated_command_override_callback(nullptr), m_command_override_callback(nullptr), m_command_override_baton(nullptr) { m_cmd_help_short = std::string(help); m_cmd_syntax = std::string(syntax); -- cgit v1.1