summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDawn Perchik <dawn@burble.org>2015-07-13 20:16:13 +0000
committerDawn Perchik <dawn@burble.org>2015-07-13 20:16:13 +0000
commit409209073598481cf34837a7b6e5e2af0cc58e4c (patch)
treeb3733e28344377f0544f4be0a5fde1946a879603
parent23763bf070a30d8239419e98077d9ef652b121f2 (diff)
[lldb-mi] Add const qualifier to vMITextLine in InterpretCommandThisDriver.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@242057 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/lldb-mi/MIDriver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lldb-mi/MIDriver.cpp b/tools/lldb-mi/MIDriver.cpp
index dfc553e4d..d4a31958d 100644
--- a/tools/lldb-mi/MIDriver.cpp
+++ b/tools/lldb-mi/MIDriver.cpp
@@ -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;