From c09b15197b87664d1f4550c41a4400f99817ca88 Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Mon, 23 Aug 2021 20:38:17 +0300 Subject: [PATCH] fix freeze with lldb terminated event --- helix-dap/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-dap/src/types.rs b/helix-dap/src/types.rs index 2f1d3a31..390fa7f3 100644 --- a/helix-dap/src/types.rs +++ b/helix-dap/src/types.rs @@ -541,7 +541,7 @@ pub mod events { Stopped(Stopped), Continued(Continued), Exited(Exited), - Terminated(Terminated), + Terminated(Option), Thread(Thread), Output(Output), Breakpoint(Breakpoint),