diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2022-03-20 11:40:34 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2022-06-04 11:58:51 +0000 |
| commit | 4b6eb0e63c698094db5506763df44cc83c19f643 (patch) | |
| tree | f1d30b8c10bc6db323b91538745ae8ab8b593910 /contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp | |
| parent | 76886853f03395abb680824bcc74e98f83bd477a (diff) | |
Diffstat (limited to 'contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp')
| -rw-r--r-- | contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp b/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp index f8a385240bd9..bec90b2038e1 100644 --- a/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp +++ b/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp @@ -57,17 +57,6 @@ ScriptInterpreterNone::CreateInstance(Debugger &debugger) { return std::make_shared<ScriptInterpreterNone>(debugger); } -lldb_private::ConstString ScriptInterpreterNone::GetPluginNameStatic() { - static ConstString g_name("script-none"); - return g_name; -} - -const char *ScriptInterpreterNone::GetPluginDescriptionStatic() { +llvm::StringRef ScriptInterpreterNone::GetPluginDescriptionStatic() { return "Null script interpreter"; } - -lldb_private::ConstString ScriptInterpreterNone::GetPluginName() { - return GetPluginNameStatic(); -} - -uint32_t ScriptInterpreterNone::GetPluginVersion() { return 1; } |
