-
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
Rollup of 15 pull requests #67670
Rollup of 15 pull requests #67670
Commits on Dec 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 3c56a65 - Browse repository at this point
Copy the full SHA 3c56a65View commit details -
Configuration menu - View commit details
-
Copy full SHA for ac31c71 - Browse repository at this point
Copy the full SHA ac31c71View commit details
Commits on Dec 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 43cb37e - Browse repository at this point
Copy the full SHA 43cb37eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 415ecc8 - Browse repository at this point
Copy the full SHA 415ecc8View commit details -
Configuration menu - View commit details
-
Copy full SHA for dfcc44d - Browse repository at this point
Copy the full SHA dfcc44dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b8ccc0f - Browse repository at this point
Copy the full SHA b8ccc0fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d19d4d - Browse repository at this point
Copy the full SHA 5d19d4dView commit details
Commits on Dec 26, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 21e636f - Browse repository at this point
Copy the full SHA 21e636fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f43313 - Browse repository at this point
Copy the full SHA 2f43313View commit details -
Configuration menu - View commit details
-
Copy full SHA for be9a3c6 - Browse repository at this point
Copy the full SHA be9a3c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c0f3f7 - Browse repository at this point
Copy the full SHA 9c0f3f7View commit details -
Use NonNull in slice::Iter and slice::IterMut.
`ptr` of `slice::Iter` and `slice::IterMut` can never be null, but this fact wasn't exploited for layout optimizations. By changing `ptr` from `*<mutability> T` to `NonNull<T>`, the compiler can now optimize layout of `Option<Iter<'a, T>>`.
Configuration menu - View commit details
-
Copy full SHA for 2c796ee - Browse repository at this point
Copy the full SHA 2c796eeView commit details
Commits on Dec 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 749295c - Browse repository at this point
Copy the full SHA 749295cView commit details -
Fixes rust-lang#65721 FCP: rust-lang#65721 (comment)
Configuration menu - View commit details
-
Copy full SHA for 1c572a2 - Browse repository at this point
Copy the full SHA 1c572a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for aa5983d - Browse repository at this point
Copy the full SHA aa5983dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ec81ab - Browse repository at this point
Copy the full SHA 1ec81abView commit details -
Configuration menu - View commit details
-
Copy full SHA for e518e38 - Browse repository at this point
Copy the full SHA e518e38View commit details -
Configuration menu - View commit details
-
Copy full SHA for f35517e - Browse repository at this point
Copy the full SHA f35517eView commit details -
Rollup merge of rust-lang#65244 - seanmonstar:into-future, r=seanmonstar
add IntoFuture trait and support for await The [async-await RFC](https://rust-lang.github.io/rfcs/2394-async_await.html#the-await-compiler-built-in) mentions being able to `await` anything implementing `IntoFuture`. Somewhere along the way, it was left out.
Configuration menu - View commit details
-
Copy full SHA for b1b005b - Browse repository at this point
Copy the full SHA b1b005bView commit details -
Rollup merge of rust-lang#67576 - king6cong:slice_repeat, r=Dylan-DPC
reuse `capacity` variable in slice::repeat None
Configuration menu - View commit details
-
Copy full SHA for a076464 - Browse repository at this point
Copy the full SHA a076464View commit details -
Rollup merge of rust-lang#67588 - Kixunil:nonnull-slice-iter, r=rkruppe
Use NonNull in slice::Iter and slice::IterMut. `ptr` of `slice::Iter` and `slice::IterMut` can never be null, but this fact wasn't exploited for layout optimizations. By changing `ptr` from `*<mutability> T` to `NonNull<T>`, the compiler can now optimize layout of `Option<Iter<'a, T>>`. Closes rust-lang#67228
Configuration menu - View commit details
-
Copy full SHA for 4b91966 - Browse repository at this point
Copy the full SHA 4b91966View commit details -
Rollup merge of rust-lang#67594 - oxalica:update-libc, r=Dylan-DPC
Update libc to 0.2.66 cc @gnzlbg @alexcrichton
Configuration menu - View commit details
-
Copy full SHA for 31fd966 - Browse repository at this point
Copy the full SHA 31fd966View commit details -
Rollup merge of rust-lang#67602 - xfix:use-issue-none-instead-of-0-in…
…-intrinsics, r=Centril Use issue = "none" instead of "0" in intrinsics `issue = "0"` was incorrectly used in rust-lang@9ee16e1, the project is moving away from issue 0
Configuration menu - View commit details
-
Copy full SHA for 4cf4fc6 - Browse repository at this point
Copy the full SHA 4cf4fc6View commit details -
Rollup merge of rust-lang#67604 - christianpoveda:scalar_to_(u|i)64, …
…r=RalfJung Add Scalar::to_(u|i)16 methods r? @RalfJung
Configuration menu - View commit details
-
Copy full SHA for e9af9db - Browse repository at this point
Copy the full SHA e9af9dbView commit details -
Rollup merge of rust-lang#67617 - kraai:remove-compiler_builtins_lib-…
…docs, r=Dylan-DPC Remove `compiler_builtins_lib` documentation Fixes rust-lang#67593
Configuration menu - View commit details
-
Copy full SHA for 98de504 - Browse repository at this point
Copy the full SHA 98de504View commit details -
Rollup merge of rust-lang#67621 - matthewjasper:correct-static-type, …
…r=oli-obk Use the correct type for static qualifs Closes rust-lang#67609
Configuration menu - View commit details
-
Copy full SHA for b88ce0e - Browse repository at this point
Copy the full SHA b88ce0eView commit details -
Rollup merge of rust-lang#67629 - kraai:remove-redundant-link-texts, …
…r=steveklabnik Remove redundant link texts Most of these links are followed by a parenthesized expression. I think that the redundant link texts were added to prevent interpretation as an inline link. This is unnecessary since the closing square bracket and opening parenthesis are separated by whitespace.
Configuration menu - View commit details
-
Copy full SHA for b371e0f - Browse repository at this point
Copy the full SHA b371e0fView commit details -
Rollup merge of rust-lang#67632 - kraai:remove-collapsed-reference-li…
…nks, r=steveklabnik Convert collapsed to shortcut reference links
Configuration menu - View commit details
-
Copy full SHA for 48efc1e - Browse repository at this point
Copy the full SHA 48efc1eView commit details -
Rollup merge of rust-lang#67633 - christianpoveda:patch-1, r=Mark-Sim…
…ulacrum Update .mailmap
Configuration menu - View commit details
-
Copy full SHA for 47d5acf - Browse repository at this point
Copy the full SHA 47d5acfView commit details -
Rollup merge of rust-lang#67635 - Mark-Simulacrum:path-doc-unsafe, r=…
…dtolnay Document safety of Path casting I would personally feel more comfortable making the relevant (internal anyway) types repr(transparent) and then documenting that we can make these casts because of that, but I believe this is a more minimal PR, so posting it first. Resolves rust-lang#45910.
Configuration menu - View commit details
-
Copy full SHA for 9525e8e - Browse repository at this point
Copy the full SHA 9525e8eView commit details -
Rollup merge of rust-lang#67654 - rossmacarthur:fix-51770-add-regress…
…ion-test, r=Centril Add regression test for old NLL ICE This fails on nightly-2018-06-24. Resolves rust-lang#51770
Configuration menu - View commit details
-
Copy full SHA for 9eb45e3 - Browse repository at this point
Copy the full SHA 9eb45e3View commit details -
Rollup merge of rust-lang#67659 - SimonSapin:matches, r=rkruppe
Stabilize the `matches!` macro Fixes rust-lang#65721 FCP: rust-lang#65721 (comment)
Configuration menu - View commit details
-
Copy full SHA for 335c887 - Browse repository at this point
Copy the full SHA 335c887View commit details -
Rollup merge of rust-lang#67664 - Manishearth:mailmapfixes, r=Mark-Si…
…mulacrum Fix some mailmap entries r? @pietroalbini
Configuration menu - View commit details
-
Copy full SHA for 65bbcf0 - Browse repository at this point
Copy the full SHA 65bbcf0View commit details