[Lldb-commits] [lldb] r157728 - /lldb/trunk/source/Commands/CommandObjectProcess.cpp
Sean Callanan
scallanan at apple.com
Wed May 30 18:30:08 PDT 2012
Author: spyffe
Date: Wed May 30 20:30:08 2012
New Revision: 157728
URL: http://llvm.org/viewvc/llvm-project?rev=157728&view=rev
Log:
Fixed a missed case in the patch to make
HandleCommand take a LazyBool instead of a bool.
Modified:
lldb/trunk/source/Commands/CommandObjectProcess.cpp
Modified: lldb/trunk/source/Commands/CommandObjectProcess.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectProcess.cpp?rev=157728&r1=157727&r2=157728&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectProcess.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectProcess.cpp Wed May 30 20:30:08 2012
@@ -598,7 +598,7 @@
// This supports the use-case scenario of immediately continuing the process once attached.
if (m_options.attach_info.GetContinueOnceAttached())
- m_interpreter.HandleCommand("process continue", false, result);
+ m_interpreter.HandleCommand("process continue", eLazyBoolNo, result);
}
return result.Succeeded();
}
More information about the lldb-commits
mailing list