Author: Raphael Isemann Date: 2020-07-05T10:54:18+02:00 New Revision: fc1d95eb7b35be418b326a18b1779ac18fb31c57
URL: https://github.com/llvm/llvm-project/commit/fc1d95eb7b35be418b326a18b1779ac18fb31c57 DIFF: https://github.com/llvm/llvm-project/commit/fc1d95eb7b35be418b326a18b1779ac18fb31c57.diff LOG: [lldb][NFC] Remove an unnecessary cast in SBCommandInterpreter Added: Modified: lldb/source/API/SBCommandInterpreter.cpp Removed: ################################################################################ diff --git a/lldb/source/API/SBCommandInterpreter.cpp b/lldb/source/API/SBCommandInterpreter.cpp index d06b33c760fc..f4f19577b36c 100644 --- a/lldb/source/API/SBCommandInterpreter.cpp +++ b/lldb/source/API/SBCommandInterpreter.cpp @@ -69,7 +69,7 @@ class CommandPluginInterfaceImplementation : public CommandObjectParsed { SBCommandInterpreter sb_interpreter(&m_interpreter); SBDebugger debugger_sb(m_interpreter.GetDebugger().shared_from_this()); bool ret = m_backend->DoExecute( - debugger_sb, (char **)command.GetArgumentVector(), sb_return); + debugger_sb, command.GetArgumentVector(), sb_return); return ret; } std::shared_ptr<lldb::SBCommandPluginInterface> m_backend; _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits