From 54d03a4985bc9a0a84c4dff835ec6ed0f607582f Mon Sep 17 00:00:00 2001 From: Tatyana Krasnukha Date: Thu, 18 Feb 2021 12:32:22 +0300 Subject: [lldb/Interpreter][NFC] Replace default constructors/destructors bodies with "=default" --- lldb/source/Interpreter/CommandObject.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'lldb/source/Interpreter/CommandObject.cpp') diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index 71adf8c..9d27de4 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -49,8 +49,6 @@ CommandObject::CommandObject(CommandInterpreter &interpreter, m_cmd_syntax = std::string(syntax); } -CommandObject::~CommandObject() {} - Debugger &CommandObject::GetDebugger() { return m_interpreter.GetDebugger(); } llvm::StringRef CommandObject::GetHelp() { return m_cmd_help_short; } -- cgit v1.1