Closed WorksButNotTested closed 1 year ago
Thanks for the quick feedback. I don’t think the lints relate to any files I have changed, so not sure how they’ve cropped up? Happy to tackle them, but just wary of breaking something without understanding what’s going on.
Just ran a cargo clippy --fix -F auto-download
and everything seems happy?!
Seems that the as
statements are necessary for x86. But are redundant on x64. Given how many there are, it would introduce a large number of conditional #[cfg(...)]
blocks? What do you think is the best approach?
Ah. In that case, it's noise. Please disable that lint for x64 for that file.
Hopefully this should sort it. There is the converse issue for x86
where clippy complains about u32
->u32
casts. So I disabled the rule for both architectures.
Awesome, thanks for the merge.
LGTM. Please address the lints from CI. Thanks.