From 43d354182f44fac52247a4340462e7471e59a00a Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Tue, 6 Dec 2016 11:24:51 +0000 Subject: Use Timeout<> in EvaluateExpressionOptions class llvm-svn: 288797 --- lldb/source/Commands/CommandObjectWatchpoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectWatchpoint.cpp') diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp index f143f5ff28d..baa9f4163a6 100644 --- a/lldb/source/Commands/CommandObjectWatchpoint.cpp +++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp @@ -1100,7 +1100,7 @@ protected: options.SetUnwindOnError(true); options.SetKeepInMemory(false); options.SetTryAllThreads(true); - options.SetTimeoutUsec(0); + options.SetTimeout(llvm::None); ExpressionResults expr_result = target->EvaluateExpression(expr, frame, valobj_sp, options); -- cgit v1.2.3