Commit 3cfcc9f
style(core): apply clippy idiom suggestions in ram_fat32
CI clippy flagged four lints in the new walker:
- `manual_range_contains` × 2 → `(2..FAT32_END_OF_CHAIN).contains(&cluster)`
/ `!(2..FAT32_END_OF_CHAIN).contains(&cluster)`.
- `manual_is_ascii_check` × 2 → `is_ascii_uppercase` / `is_ascii_lowercase`.
Plus an `identity_op` (`x + 0x00`) in the LFN test fixture and
the rustfmt re-flow that came with replacing the longer literals.
No semantic change; 9/9 host walker tests + bios-boot-smoke all
still pass locally.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 27d5941 commit 3cfcc9f
1 file changed
Lines changed: 5 additions & 9 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
123 | 123 | | |
124 | 124 | | |
125 | 125 | | |
126 | | - | |
| 126 | + | |
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
| |||
221 | 221 | | |
222 | 222 | | |
223 | 223 | | |
224 | | - | |
| 224 | + | |
225 | 225 | | |
226 | 226 | | |
227 | 227 | | |
| |||
335 | 335 | | |
336 | 336 | | |
337 | 337 | | |
338 | | - | |
| 338 | + | |
339 | 339 | | |
340 | 340 | | |
341 | 341 | | |
| |||
361 | 361 | | |
362 | 362 | | |
363 | 363 | | |
364 | | - | |
365 | | - | |
366 | | - | |
367 | | - | |
368 | | - | |
| 364 | + | |
369 | 365 | | |
370 | 366 | | |
371 | 367 | | |
| |||
446 | 442 | | |
447 | 443 | | |
448 | 444 | | |
449 | | - | |
| 445 | + | |
450 | 446 | | |
451 | 447 | | |
452 | 448 | | |
| |||
0 commit comments