diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 86c2fd7d9a9..ca5ca1520f1 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -340,7 +340,8 @@ CommandObjectExpression::EvaluateExpression true, // Use synthetic children if available true, // Scope is already checked. Const results are always in scope. false, // Don't flatten output - 0); // Always use summaries (you might want an option --no-summary like there is for frame variable) + 0, // Always use summaries (you might want an option --no-summary like there is for frame variable) + false); // Do not show more children than settings allow if (result) result->SetStatus (eReturnStatusSuccessFinishResult); } |