diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-06-15 21:15:35 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-06-15 21:15:35 -0700 |
commit | 5ddd4fc5a65a452dffa2d27ad6a5c04d148d6234 (patch) | |
tree | a7e875cdcc374b8589e5a57524d5d3ce9394fb50 /lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h | |
parent | 93571c3c3b2f67c8225861033ffff239706ca950 (diff) | |
download | llvm-5ddd4fc5a65a452dffa2d27ad6a5c04d148d6234.zip llvm-5ddd4fc5a65a452dffa2d27ad6a5c04d148d6234.tar.gz llvm-5ddd4fc5a65a452dffa2d27ad6a5c04d148d6234.tar.bz2 |
[lldb/Lua] Fix override/virtual in ScriptInterpreterLua (NFC)
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h index 4e92215..bcc6ab2 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h +++ b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h @@ -25,7 +25,7 @@ public: void ExecuteInterpreterLoop() override; - virtual bool + bool LoadScriptingModule(const char *filename, bool init_session, lldb_private::Status &error, StructuredData::ObjectSP *module_sp = nullptr) override; |