diff options
author | Sean Callanan <scallanan@apple.com> | 2012-05-31 01:30:08 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2012-05-31 01:30:08 +0000 |
commit | 5bcaf5836b3f65f6571c28c6ca9e7933e585254d (patch) | |
tree | 267a25412c0475d6b24fb8176bca881adbea470a /lldb/source/Commands/CommandObjectProcess.cpp | |
parent | 5f5ab60274277be5af7765d0fd288fe2c454e164 (diff) | |
download | llvm-5bcaf5836b3f65f6571c28c6ca9e7933e585254d.zip llvm-5bcaf5836b3f65f6571c28c6ca9e7933e585254d.tar.gz llvm-5bcaf5836b3f65f6571c28c6ca9e7933e585254d.tar.bz2 |
Fixed a missed case in the patch to make
HandleCommand take a LazyBool instead of a bool.
llvm-svn: 157728
Diffstat (limited to 'lldb/source/Commands/CommandObjectProcess.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectProcess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index ce9f17e..249c8da 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -598,7 +598,7 @@ public: // 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(); } |