diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2022-09-19 10:47:09 -0700 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2022-09-19 14:43:31 -0700 |
| commit | 70599d70273b671b1b2e6a0e0b9c11e413209647 (patch) | |
| tree | 2868dfff6c1a64e576d001efc8aa0731bde242e2 /lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp | |
| parent | 2e8817b90a9aa38c681ca1bb9075f9e8eed3f6e8 (diff) | |
[lldb] Remove LLDB reproducers
This patch removes the remaining reproducer code. The SBReproducer class
remains for ABI stability but is just an empty shell. This completes the
removal process outlined on the mailing list [1].
[1] https://lists.llvm.org/pipermail/lldb-dev/2021-September/017045.html
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp')
| -rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp index 5b9d1b7c1520..ec0992583145 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp @@ -40,8 +40,8 @@ public: ScriptInterpreterLua &script_interpreter, ActiveIOHandler active_io_handler = eIOHandlerNone) : IOHandlerEditline(debugger, IOHandler::Type::LuaInterpreter, "lua", - ">>> ", "..> ", true, debugger.GetUseColor(), 0, - *this, nullptr), + llvm::StringRef(">>> "), llvm::StringRef("..> "), + true, debugger.GetUseColor(), 0, *this), m_script_interpreter(script_interpreter), m_active_io_handler(active_io_handler) { llvm::cantFail(m_script_interpreter.GetLua().ChangeIO( |
