aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/ScriptInterpreter.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/ScriptInterpreter.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/ScriptInterpreter.cpp')
-rw-r--r--lldb/source/Interpreter/ScriptInterpreter.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreter.cpp b/lldb/source/Interpreter/ScriptInterpreter.cpp
index 013ed6a..2c55d08 100644
--- a/lldb/source/Interpreter/ScriptInterpreter.cpp
+++ b/lldb/source/Interpreter/ScriptInterpreter.cpp
@@ -30,8 +30,6 @@ ScriptInterpreter::ScriptInterpreter(Debugger &debugger,
lldb::ScriptLanguage script_lang)
: m_debugger(debugger), m_script_lang(script_lang) {}
-ScriptInterpreter::~ScriptInterpreter() {}
-
void ScriptInterpreter::CollectDataForBreakpointCommandCallback(
std::vector<BreakpointOptions *> &bp_options_vec,
CommandReturnObject &result) {