diff options
Diffstat (limited to 'lldb/scripts/Python/interface/SBExpressionOptions.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBExpressionOptions.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/scripts/Python/interface/SBExpressionOptions.i b/lldb/scripts/Python/interface/SBExpressionOptions.i index 87e3ffe2fef..1f11862b362 100644 --- a/lldb/scripts/Python/interface/SBExpressionOptions.i +++ b/lldb/scripts/Python/interface/SBExpressionOptions.i @@ -39,7 +39,7 @@ public: %feature("docstring", "Sets whether to unwind the expression stack on error.") SetUnwindOnError; void - SetUnwindOnError (bool unwind = false); + SetUnwindOnError (bool unwind = true); bool GetIgnoreBreakpoints () const; @@ -47,7 +47,7 @@ public: %feature("docstring", "Sets whether to ignore breakpoint hits while running expressions.") SetUnwindOnError; void - SetIgnoreBreakpoints (bool ignore = false); + SetIgnoreBreakpoints (bool ignore = true); lldb::DynamicValueType GetFetchDynamicValue () const; |