diff options
author | Jim Ingham <jingham@apple.com> | 2010-06-19 04:35:20 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2010-06-19 04:35:20 +0000 |
commit | b2a38a7286d20a4c6cf20820a0cfe9a1d30df93e (patch) | |
tree | e1b7ad7bc2ebf8664980ab1210d0bbf7d3df5802 /lldb/source/Commands/CommandObjectBreakpoint.h | |
parent | 60a234f07954e6a0794db4db9d988054fbc88158 (diff) | |
download | bcm5719-llvm-b2a38a7286d20a4c6cf20820a0cfe9a1d30df93e.tar.gz bcm5719-llvm-b2a38a7286d20a4c6cf20820a0cfe9a1d30df93e.zip |
Remember whether a queue or thread name were passed into "breakpoint modify" so we can recognize an empty argument as unsetting the option.
llvm-svn: 106377
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.h b/lldb/source/Commands/CommandObjectBreakpoint.h index 5374146ff47..053e036c0c8 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.h +++ b/lldb/source/Commands/CommandObjectBreakpoint.h @@ -172,6 +172,8 @@ public: std::string m_queue_name; bool m_enable_passed; bool m_enable_value; + bool m_name_passed; + bool m_queue_passed; }; |