Skip to content

Commit

Permalink
small i64 vs u64 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Serena committed Nov 15, 2024
1 parent 847059f commit f660d74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cider-dap/src/adapter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ impl MyAdapter {
.map(|(nam, val)| {
let valu = match val.as_option() {
None => 0,
Some(assigned_val) => assigned_val.val().as_i64(),
Some(assigned_val) => assigned_val.val().as_u64(),
};
Variable {
name: String::from(nam),
Expand Down

0 comments on commit f660d74

Please sign in to comment.