Skip to content

Commit

Permalink
[lldb/Lua] Fix override/virtual in ScriptInterpreterLua (NFC)
Browse files Browse the repository at this point in the history
  • Loading branch information
JDevlieghere committed Jun 16, 2020
1 parent 93571c3 commit 5ddd4fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -33,7 +33,7 @@ class IOHandlerLuaInterpreter : public IOHandlerDelegate,
llvm::cantFail(m_script_interpreter.EnterSession(debugger.GetID()));
}

~IOHandlerLuaInterpreter() {
~IOHandlerLuaInterpreter() override {
llvm::cantFail(m_script_interpreter.LeaveSession());
}

Expand Down
Expand Up @@ -25,7 +25,7 @@ class ScriptInterpreterLua : public ScriptInterpreter {

void ExecuteInterpreterLoop() override;

virtual bool
bool
LoadScriptingModule(const char *filename, bool init_session,
lldb_private::Status &error,
StructuredData::ObjectSP *module_sp = nullptr) override;
Expand Down

0 comments on commit 5ddd4fc

Please sign in to comment.