-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Constify remaining Layout
methods
#102207
Conversation
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
r? @scottmcm (rust-highfive has picked a reviewer for you, use r? to override) |
Thanks for mentioning #102072! My inclination here to to avoid further changes around Otherwise this seems perfectly reasonable to me. |
☔ The latest upstream changes (presumably #102850) made this pull request unmergeable. Please resolve the merge conflicts. |
8989fef
to
14b0380
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
35515dd
to
5f1c206
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This is also blocked on #102049, since |
It looks like the size limit will stick (#101899 (comment)) so I think that part is unblocked, but #102049 is a good callout. |
☔ The latest upstream changes (presumably #104325) made this pull request unmergeable. Please resolve the merge conflicts. |
e1d6463
to
e5d1bf7
Compare
Some changes occurred in HTML/CSS/JS. cc @GuillaumeGomez, @Folyd, @jsha Some changes occurred in HTML/CSS themes. A change occurred in the Ayu theme. cc @Cldfire |
Agh, sorry to everyone who got pinged |
d9a53ad
to
21c61e1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for updating this so promptly!
One minor request, then this looks good to go.
Oh, given @CAD97's comment at the top of the file, I should probably @bors try @rust-timer queue |
@bors r- |
(Closing and reopening to re-trigger CI) |
This comment has been minimized.
This comment has been minimized.
Remove bad impl for Eq Update Cargo.lock and fix last ValidAlign
bbcdebd
to
0791187
Compare
This comment has been minimized.
This comment has been minimized.
@bors r+ |
…earth Rollup of 7 pull requests Successful merges: - rust-lang#83608 (Add slice methods for indexing via an array of indices.) - rust-lang#95583 (Deprecate the unstable `ptr_to_from_bits` feature) - rust-lang#101655 (Make the Box one-liner more descriptive) - rust-lang#102207 (Constify remaining `Layout` methods) - rust-lang#103193 (mark sys_common::once::generic::Once::new const-stable) - rust-lang#104622 (Use clang for the UEFI targets) - rust-lang#104638 (Move macro_rules diagnostics to diagnostics module) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Makes the methods on
Layout
that aren't yet unstably const, under the same feature and issue, #67521. Most of them required no changes, only non-trivial change is probably constifyingValidAlignment
which may affect #102072