Files
rust/library
Trevor Gross 44ee391300 meta: Allow a clippy lint that appears in recent versions
We are now getting this warning:

    warning: the variable `j` is used as a loop counter
       --> libm/src/math/rem_pio2_large.rs:268:5
        |
    268 |     for i in 0..=m {
        |     ^^^^^^^^^^^^^^ help: consider using: `for (j, i) in ((jv as i32) - (jx as i32)..).zip((0..=m))`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_counter_loop
        = note: `#[warn(clippy::explicit_counter_loop)]` on by default

    warning: `libm` (lib) generated 1 warning

Where the suggestion is definitely not an improvement.
2026-03-05 19:57:57 -05:00
..
2026-01-26 10:57:35 +00:00
2025-07-01 10:55:49 -07:00
2026-01-26 10:59:16 +00:00