-
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
Rollup of 10 pull requests #52655
Rollup of 10 pull requests #52655
Commits on Jul 19, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 53ae366 - Browse repository at this point
Copy the full SHA 53ae366View commit details -
Cursor: update docs to clarify Cursor only works with in-memory buffers
Reduce misconceptions about Cursor being more general than it really is. Fixes: rust-lang#52470
Configuration menu - View commit details
-
Copy full SHA for 8b80c9f - Browse repository at this point
Copy the full SHA 8b80c9fView commit details
Commits on Jul 22, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 9369b52 - Browse repository at this point
Copy the full SHA 9369b52View commit details -
Configuration menu - View commit details
-
Copy full SHA for bf2fc77 - Browse repository at this point
Copy the full SHA bf2fc77View commit details -
Use MultiSpan in E0707 and E709
Esteban Küber committedJul 22, 2018 Configuration menu - View commit details
-
Copy full SHA for 59a435b - Browse repository at this point
Copy the full SHA 59a435bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 814e6e6 - Browse repository at this point
Copy the full SHA 814e6e6View commit details
Commits on Jul 23, 2018
-
Don't use NonNull::dangling as sentinel value
Instead, rely on alignment and use usize::MAX as sentinel.
Configuration menu - View commit details
-
Copy full SHA for 33b8f62 - Browse repository at this point
Copy the full SHA 33b8f62View commit details -
Configuration menu - View commit details
-
Copy full SHA for a303741 - Browse repository at this point
Copy the full SHA a303741View commit details -
Forget Waker when cloning LocalWaker
Since NonNull is Copy the inner field of the cloned Waker was copied for use in the new LocalWaker, however this left Waker to be dropped. Which means that when cloning LocalWaker would also erroneously call drop_raw. This change forgets the Waker, rather then dropping it, leaving the inner field to be used by the returned LocalWaker. Closes rust-lang#52629.
Configuration menu - View commit details
-
Copy full SHA for 89495f3 - Browse repository at this point
Copy the full SHA 89495f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for d89ac4c - Browse repository at this point
Copy the full SHA d89ac4cView commit details -
Configuration menu - View commit details
-
Copy full SHA for fe588d8 - Browse repository at this point
Copy the full SHA fe588d8View commit details
Commits on Jul 24, 2018
-
Rollup merge of rust-lang#52538 - ljedrz:old_musl_i586_flags, r=kennytm
Remove obsolete flags in the i586_musl Dockerfile Resolves an [outdated FIXME](https://github.com/rust-lang/rust/blob/ab8b961677ac5c74762dcea955aa0ff4d7fe4915/src/ci/docker/dist-i586-gnu-i586-i686-musl/Dockerfile#L45) in the Dockerfile for dist-i586-gnu-i586-i686-musl.
Configuration menu - View commit details
-
Copy full SHA for cf995d6 - Browse repository at this point
Copy the full SHA cf995d6View commit details -
Rollup merge of rust-lang#52548 - tko:cursor-doc, r=sfackler
Cursor: update docs to clarify Cursor only works with in-memory buffers Reduce misconceptions about Cursor being more general than it really is. Fixes: rust-lang#52470
Configuration menu - View commit details
-
Copy full SHA for a98c19e - Browse repository at this point
Copy the full SHA a98c19eView commit details -
Rollup merge of rust-lang#52605 - estebank:str-plus-eq, r=oli-obk
Do not suggest using `to_owned()` on `&str += &str` - Don't provide incorrect suggestion for `&str += &str` (fix rust-lang#52410) - On `&str + String` suggest `&str.to_owned() + &String` as a single suggestion
Configuration menu - View commit details
-
Copy full SHA for 5b7e3a1 - Browse repository at this point
Copy the full SHA 5b7e3a1View commit details -
Rollup merge of rust-lang#52621 - ehuss:atty-fix, r=alexcrichton
Fix color detection for Windows msys terminals. Updates atty to pull in the fix softprops/atty#28. Closes rust-lang/cargo#5724.
Configuration menu - View commit details
-
Copy full SHA for 85bb13c - Browse repository at this point
Copy the full SHA 85bb13cView commit details -
Rollup merge of rust-lang#52622 - estebank:lifetime-multispan, r=niko…
…matsakis Use MultiSpan in E0707 and E709
Configuration menu - View commit details
-
Copy full SHA for 291a620 - Browse repository at this point
Copy the full SHA 291a620View commit details -
Rollup merge of rust-lang#52627 - Mark-Simulacrum:rustdoc-test-correc…
…t, r=alexcrichton Compile rustc before building tests for rustdoc r? @alexcrichton
Configuration menu - View commit details
-
Copy full SHA for 4084f0e - Browse repository at this point
Copy the full SHA 4084f0eView commit details -
Rollup merge of rust-lang#52637 - RalfJung:rc, r=joshtriplett
Don't use NonNull::dangling as sentinel value in Rc, Arc Instead, rely on alignment and use usize::MAX as sentinel. Cc rust-lang#52508 r? @joshtriplett
Configuration menu - View commit details
-
Copy full SHA for 3af372a - Browse repository at this point
Copy the full SHA 3af372aView commit details -
Rollup merge of rust-lang#52640 - Thomasdezeeuw:fix-localwaker-clone,…
… r=cramertj Forget Waker when cloning LocalWaker Since NonNull is Copy the inner field of the cloned Waker was copied for use in the new LocalWaker, however this left Waker to be dropped. Which means that when cloning LocalWaker would also erroneously call drop_raw. This change forgets the Waker, rather then dropping it, leaving the inner field to be used by the returned LocalWaker. Closes rust-lang#52629.
Configuration menu - View commit details
-
Copy full SHA for b3c9fe2 - Browse repository at this point
Copy the full SHA b3c9fe2View commit details -
Rollup merge of rust-lang#52641 - ljedrz:mir_dataflow_misc, r=cramertj
Simplify 2 functions in rustc_mir/dataflow - `graphviz::outgoing`: the `enumerate` only provides indices; use a range instead - `DataflowState::interpret_set`: change a push loop to an iterator and remove the `each_bit` helper function
Configuration menu - View commit details
-
Copy full SHA for 378ef99 - Browse repository at this point
Copy the full SHA 378ef99View commit details -
Rollup merge of rust-lang#52642 - ljedrz:expect_fun_call, r=Mark-Simu…
…lacrum Replace a few expect+format combos with unwrap_or_else+panic That way the error strings won't be created if the related errors are not triggered.
Configuration menu - View commit details
-
Copy full SHA for 3efc612 - Browse repository at this point
Copy the full SHA 3efc612View commit details