diff options
author | Greg Clayton <gclayton@apple.com> | 2014-05-08 16:59:00 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-05-08 16:59:00 +0000 |
commit | c3d874a5843810e69b9847a6a4bb49c9481c6692 (patch) | |
tree | 3d5324d2969902043bcd687787449b49f2a4cc83 /lldb/source/Commands/CommandObjectWatchpointCommand.cpp | |
parent | 61449c6b9a69054a93e885b4503c2f9b3a7ce426 (diff) | |
download | bcm5719-llvm-c3d874a5843810e69b9847a6a4bb49c9481c6692.tar.gz bcm5719-llvm-c3d874a5843810e69b9847a6a4bb49c9481c6692.zip |
lldb TOT is dropping the last entry for multi-line IOHandlers that use the IOHandlerDelegateMultiline.
<rdar://problem/16844164>
llvm-svn: 208336
Diffstat (limited to 'lldb/source/Commands/CommandObjectWatchpointCommand.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpointCommand.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpointCommand.cpp b/lldb/source/Commands/CommandObjectWatchpointCommand.cpp index 45291a54bdb..0083ff140e5 100644 --- a/lldb/source/Commands/CommandObjectWatchpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectWatchpointCommand.cpp @@ -46,7 +46,7 @@ public: "add", "Add a set of commands to a watchpoint, to be executed whenever the watchpoint is hit.", NULL), - IOHandlerDelegateMultiline("DONE", true, IOHandlerDelegate::Completion::LLDBCommand), + IOHandlerDelegateMultiline("DONE", IOHandlerDelegate::Completion::LLDBCommand), m_options (interpreter) { SetHelpLong ( |