-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Implement LowerHex on Scalar to clean up their display in rustdoc #94189
Conversation
Some changes occured to the CTFE / Miri engine cc @rust-lang/miri Some changes occured to the CTFE / Miri engine cc @rust-lang/miri |
📌 Commit c358ffe has been approved by |
Simply because we didn't know of it. I'll send a PR to use it instead. Do you me to remove the |
Yeah, we can remove "dangling" instances. This PR still makes sense though IMO, to be more explicit about how Also we will have to see if the MIR printing satisfies the requirements of rustdoc. For example, I think it currently does not add |
Sounds good to me! I'll send a PR once this one is merged then. |
…RalfJung Implement LowerHex on Scalar to clean up their display in rustdoc Follow-up of rust-lang#94091. r? `@RalfJung`
…RalfJung Implement LowerHex on Scalar to clean up their display in rustdoc Follow-up of rust-lang#94091. r? ``@RalfJung``
…RalfJung Implement LowerHex on Scalar to clean up their display in rustdoc Follow-up of rust-lang#94091. r? ```@RalfJung```
…askrgr Rollup of 10 pull requests Successful merges: - rust-lang#91192 (Some improvements to the async docs) - rust-lang#94143 (rustc_const_eval: adopt let else in more places) - rust-lang#94156 (Gracefully handle non-UTF-8 string slices when pretty printing) - rust-lang#94186 (Update pin_static_ref stabilization version.) - rust-lang#94189 (Implement LowerHex on Scalar to clean up their display in rustdoc) - rust-lang#94190 (Use Metadata::modified instead of FileTime::from_last_modification_ti…) - rust-lang#94203 (CTFE engine: Scalar: expose size-generic to_(u)int methods) - rust-lang#94211 (Better error if the user tries to do assignment ... else) - rust-lang#94215 (trait system: comments and small nonfunctional changes) - rust-lang#94220 (Correctly handle miniz_oxide extern crate declaration) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
ScalarMaybeUninit is explicitly hexadecimal in its formatting This makes `ScalarMaybeUninit` consistent with `Scalar` after the changes in rust-lang#94189. r? `@oli-obk`
I just checked for the follow-up and moving So unless I missed something, I'll let things as is for the time being. |
ScalarMaybeUninit is explicitly hexadecimal in its formatting This makes `ScalarMaybeUninit` consistent with `Scalar` after the changes in rust-lang#94189. r? ``@oli-obk``
Follow-up of #94091.
r? @RalfJung