summaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
diff options
context:
space:
mode:
authorPavel Labath <pavel@labath.sk>2021-09-10 14:38:27 +0200
committerPavel Labath <pavel@labath.sk>2021-09-13 10:29:00 +0200
commitb03126768a842aa80bd20ae137ba3df52043e641 (patch)
tree07a6bfa630c5eb42a386d1ea7d3f54ceb8c53a26 /lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
parent7e337d8ba2ff5015d83f355be1049e3e13fa4d18 (diff)
[lldb] Remove PluginInterface::GetPluginVersion
In all these years, we haven't found a use for this function (it has zero callers). Lets just remove the boilerplate. Differential Revision: https://reviews.llvm.org/D109600
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp')
-rw-r--r--lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
index ef46401c8b46..47fb12b9d58d 100644
--- a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
+++ b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
@@ -400,6 +400,4 @@ lldb_private::ConstString ScriptInterpreterLua::GetPluginName() {
return GetPluginNameStatic();
}
-uint32_t ScriptInterpreterLua::GetPluginVersion() { return 1; }
-
Lua &ScriptInterpreterLua::GetLua() { return *m_lua; }