aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/CommandObject.cpp
diff options
context:
space:
mode:
authorTatyana Krasnukha <tatyana@synopsys.com>2021-02-18 12:32:22 +0300
committerTatyana Krasnukha <tatyana@synopsys.com>2021-02-28 19:23:16 +0300
commit54d03a4985bc9a0a84c4dff835ec6ed0f607582f (patch)
treee10b3dad36450d7c8eb121214c013441338b7142 /lldb/source/Interpreter/CommandObject.cpp
parent9182117861896a03499bbca3612fc66ca4d36944 (diff)
downloadllvm-54d03a4985bc9a0a84c4dff835ec6ed0f607582f.zip
llvm-54d03a4985bc9a0a84c4dff835ec6ed0f607582f.tar.gz
llvm-54d03a4985bc9a0a84c4dff835ec6ed0f607582f.tar.bz2
[lldb/Interpreter][NFC] Replace default constructors/destructors bodies with "=default"
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r--lldb/source/Interpreter/CommandObject.cpp2
1 files changed, 0 insertions, 2 deletions
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; }