-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decide whether to keep pointer sized integers as the default #11831
Comments
I don't see how this is different to #6023 (removing the default to Also, if we keep a type called |
Accepted for 1.0, P-backcompat-lang |
A summary of what I see as the related issues in this discussion:
|
I think it's fine to have |
closing. |
clippy::suboptimal_flops used to not check if the second parameter to f32/f64.mul_add() was float. Since the method is only defined to take `Self` as paremters, the suggestion was wrong. Fixes rust-lang#11831
Don't suggest `a.mul_add(b, c)` if parameters are not float clippy::suboptimal_flops used to not check if the second parameter to f32/f64.mul_add() was float. Since the method is only defined to take `Self` as parameters, the suggestion was wrong. Fixes rust-lang#11831 changelog: [`suboptimal_float`]: Don't suggest `a.mul_add(b, c)` if parameters are not f32/f64
I know there are other issues related to this, but I want to make a firm decision one way or the other on whether we want to commit to int and uint being pointer sized. Whatever the decision add it to the design FAQ (#4047). Nominating.
The text was updated successfully, but these errors were encountered: