[Lldb-commits] [lldb] r242057 - [lldb-mi] Add const qualifier to vMITextLine in InterpretCommandThisDriver.

Dawn Perchik dawn at burble.org
Mon Jul 13 13:16:14 PDT 2015


Author: dperchik
Date: Mon Jul 13 15:16:13 2015
New Revision: 242057

URL: http://llvm.org/viewvc/llvm-project?rev=242057&view=rev
Log:
[lldb-mi] Add const qualifier to vMITextLine in InterpretCommandThisDriver.

Modified:
    lldb/trunk/tools/lldb-mi/MIDriver.cpp

Modified: lldb/trunk/tools/lldb-mi/MIDriver.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MIDriver.cpp?rev=242057&r1=242056&r2=242057&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MIDriver.cpp (original)
+++ lldb/trunk/tools/lldb-mi/MIDriver.cpp Mon Jul 13 15:16:13 2015
@@ -925,7 +925,7 @@ bool
 CMIDriver::InterpretCommandThisDriver(const CMIUtilString &vTextLine, bool &vwbCmdYesValid)
 {
     // Convert any CLI commands into MI commands
-    CMIUtilString vMITextLine(WrapCLICommandIntoMICommand(vTextLine));
+    const CMIUtilString vMITextLine(WrapCLICommandIntoMICommand(vTextLine));
 
     vwbCmdYesValid = false;
     bool bCmdNotInCmdFactor = false;





More information about the lldb-commits mailing list