diff options
author | Jim Ingham <jingham@apple.com> | 2011-02-18 00:54:25 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-02-18 00:54:25 +0000 |
commit | e16c50a11a4cc49b0b4a88c481642f72003aac89 (patch) | |
tree | d86a18f84f4a736f5d10a240b3d576d03bc73754 /lldb/source/Commands/CommandObjectBreakpointCommand.h | |
parent | d12b480e29e3891c308b0380d591cdca4e8e9a63 (diff) | |
download | llvm-e16c50a11a4cc49b0b4a88c481642f72003aac89.zip llvm-e16c50a11a4cc49b0b4a88c481642f72003aac89.tar.gz llvm-e16c50a11a4cc49b0b4a88c481642f72003aac89.tar.bz2 |
Factor all the code that does "Execute a list of lldb command interpreter commands" into a single function in the Interpreter, and then use that in all the places that used to do this by hand.
llvm-svn: 125807
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpointCommand.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpointCommand.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpointCommand.h b/lldb/source/Commands/CommandObjectBreakpointCommand.h index 034a0e8..51131d2 100644 --- a/lldb/source/Commands/CommandObjectBreakpointCommand.h +++ b/lldb/source/Commands/CommandObjectBreakpointCommand.h @@ -122,6 +122,7 @@ public: // Instance variables to hold the values for one_liner options. bool m_use_one_liner; std::string m_one_liner; + bool m_stop_on_error; }; private: |