Commit 30eebef
authored
fix(wasm): re-borrow in bisect.rs broke the wasm32 build on main (#75)
* fix(wasm): re-borrow dropped by token strip broke wasm32 build
expected_const_words() iterates &[[f32;4]] — `&row` is &&[f32;4]. Only the
wasm-check derivation compiles this cfg, and the concurrency group cancelled
main's own ci runs for #73/#74 before wasm-check ran, so main went red
silently; the #69/#56 merge branches surfaced it.
* fix(clippy): needless_borrow in abcdn handler tests, second token-strip casualty
Swept the whole workspace locally with clippy --all-targets -D warnings and
fmt --check: clean. Same masking as the wasm break — clippy runs only on the
x86 lane and main's ci runs for #73/#74 were concurrency-cancelled.1 parent 641cef7 commit 30eebef
2 files changed
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
408 | 408 | | |
409 | 409 | | |
410 | 410 | | |
411 | | - | |
| 411 | + | |
412 | 412 | | |
413 | 413 | | |
414 | 414 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
510 | 510 | | |
511 | 511 | | |
512 | 512 | | |
513 | | - | |
| 513 | + | |
514 | 514 | | |
515 | 515 | | |
516 | | - | |
| 516 | + | |
517 | 517 | | |
518 | 518 | | |
519 | | - | |
| 519 | + | |
520 | 520 | | |
521 | 521 | | |
522 | 522 | | |
| |||
0 commit comments