[Lldb-commits] [lldb] fc1d95e - [lldb][NFC] Remove an unnecessary cast in SBCommandInterpreter

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Sun Jul 5 01:55:42 PDT 2020


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;


        


More information about the lldb-commits mailing list