diff options
author | Dmitry Sharshakov | 2021-08-23 17:38:17 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-23 17:38:17 +0000 |
commit | c09b15197b87664d1f4550c41a4400f99817ca88 (patch) | |
tree | 94090d27289c2409f5f8e2514d5190649fd8f092 /helix-dap/src | |
parent | 09c994a97aa45e5af1e88aba80796a503d31ed7b (diff) |
fix freeze with lldb terminated event
Diffstat (limited to 'helix-dap/src')
-rw-r--r-- | helix-dap/src/types.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<Terminated>), Thread(Thread), Output(Output), Breakpoint(Breakpoint), |