aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-23 17:38:17 +0000
committerDmitry Sharshakov2021-08-23 17:38:17 +0000
commitc09b15197b87664d1f4550c41a4400f99817ca88 (patch)
tree94090d27289c2409f5f8e2514d5190649fd8f092
parent09c994a97aa45e5af1e88aba80796a503d31ed7b (diff)
fix freeze with lldb terminated event
-rw-r--r--helix-dap/src/types.rs2
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),