Unnamed repository; edit this file 'description' to name the repository.
Change hit_breakpoint_ids type from usize to i32 (#15463)
| -rw-r--r-- | helix-dap-types/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-dap-types/src/lib.rs b/helix-dap-types/src/lib.rs index 2ee7063b..11eda181 100644 --- a/helix-dap-types/src/lib.rs +++ b/helix-dap-types/src/lib.rs @@ -831,7 +831,7 @@ pub mod events { #[serde(skip_serializing_if = "Option::is_none")] pub all_threads_stopped: Option<bool>, #[serde(skip_serializing_if = "Option::is_none")] - pub hit_breakpoint_ids: Option<Vec<usize>>, + pub hit_breakpoint_ids: Option<Vec<i32>>, } #[derive(Debug)] |