diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index ba477cd5f4c..cfb3a6dd511 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -358,9 +358,9 @@ bool CommandObjectExpression::EvaluateExpression(const char *expr, options.SetGenerateDebugInfo(true); if (m_command_options.timeout > 0) - options.SetTimeoutUsec(m_command_options.timeout); + options.SetTimeout(std::chrono::microseconds(m_command_options.timeout)); else - options.SetTimeoutUsec(0); + options.SetTimeout(llvm::None); ExpressionResults success = target->EvaluateExpression( expr, frame, result_valobj_sp, options, &m_fixed_expression); |