-
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 11 pull requests #58831
Rollup of 11 pull requests #58831
Commits on Feb 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 1fd2f16 - Browse repository at this point
Copy the full SHA 1fd2f16View commit details
Commits on Feb 26, 2019
-
Use informational target machine for metadata
Since there is nothing to optimise there...
Configuration menu - View commit details
-
Copy full SHA for d89c2f6 - Browse repository at this point
Copy the full SHA d89c2f6View commit details
Commits on Feb 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 8884771 - Browse repository at this point
Copy the full SHA 8884771View commit details -
Configuration menu - View commit details
-
Copy full SHA for ec2e4ba - Browse repository at this point
Copy the full SHA ec2e4baView commit details -
Configuration menu - View commit details
-
Copy full SHA for 88bd624 - Browse repository at this point
Copy the full SHA 88bd624View commit details -
Configuration menu - View commit details
-
Copy full SHA for 932fe17 - Browse repository at this point
Copy the full SHA 932fe17View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e7d4c7 - Browse repository at this point
Copy the full SHA 4e7d4c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for b70a953 - Browse repository at this point
Copy the full SHA b70a953View commit details -
Configuration menu - View commit details
-
Copy full SHA for f92c204 - Browse repository at this point
Copy the full SHA f92c204View commit details -
Configuration menu - View commit details
-
Copy full SHA for a046c38 - Browse repository at this point
Copy the full SHA a046c38View commit details -
Configuration menu - View commit details
-
Copy full SHA for a998b1f - Browse repository at this point
Copy the full SHA a998b1fView commit details -
Configuration menu - View commit details
-
Copy full SHA for fc4b916 - Browse repository at this point
Copy the full SHA fc4b916View commit details -
Configuration menu - View commit details
-
Copy full SHA for e206d4e - Browse repository at this point
Copy the full SHA e206d4eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93ff7dc - Browse repository at this point
Copy the full SHA 93ff7dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 987d71f - Browse repository at this point
Copy the full SHA 987d71fView commit details -
Configuration menu - View commit details
-
Copy full SHA for bdd3826 - Browse repository at this point
Copy the full SHA bdd3826View commit details -
Configuration menu - View commit details
-
Copy full SHA for 36b1326 - Browse repository at this point
Copy the full SHA 36b1326View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1068424 - Browse repository at this point
Copy the full SHA 1068424View commit details -
Configuration menu - View commit details
-
Copy full SHA for 525dc46 - Browse repository at this point
Copy the full SHA 525dc46View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5fb2d8b - Browse repository at this point
Copy the full SHA 5fb2d8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0976e5e - Browse repository at this point
Copy the full SHA 0976e5eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 42a89c6 - Browse repository at this point
Copy the full SHA 42a89c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0df193f - Browse repository at this point
Copy the full SHA 0df193fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 70b853d - Browse repository at this point
Copy the full SHA 70b853dView commit details
Commits on Feb 28, 2019
-
Make
Unique::as_ptr
,NonNull::dangling
andNonNull::cast
constMake `Unique::as_ptr` const without feature attribute as it's unstable Make `NonNull::dangling` and `NonNull::cast` const with `feature = "const_ptr_nonnull"`
Tim committedFeb 28, 2019 Configuration menu - View commit details
-
Copy full SHA for 797d8ea - Browse repository at this point
Copy the full SHA 797d8eaView commit details -
Co-Authored-By: RalfJung <post@ralfj.de>
Configuration menu - View commit details
-
Copy full SHA for 0c1a38c - Browse repository at this point
Copy the full SHA 0c1a38cView commit details -
Fixed a syntax error in the pin docs
Alex Gaynor authoredFeb 28, 2019 Configuration menu - View commit details
-
Copy full SHA for 96be181 - Browse repository at this point
Copy the full SHA 96be181View commit details
Commits on Mar 1, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 3391f6c - Browse repository at this point
Copy the full SHA 3391f6cView commit details -
Rollup merge of rust-lang#58605 - nagisa:fix-the-metadata, r=michaelw…
…oerister Use informational target machine for metadata Since there is nothing to optimise there... Should fix rust-lang#58323 but haven’t tested locally. r? @michaelwoerister
Configuration menu - View commit details
-
Copy full SHA for 059121b - Browse repository at this point
Copy the full SHA 059121bView commit details -
Rollup merge of rust-lang#58629 - euclio:debug-empty-str, r=alexcrichton
rust-lldb: fix crash when printing empty string Fixes rust-lang#52185. ~Re-enables the pretty-std debuginfo test and tweaks the test as necessary to get it to pass again. This reveals that lldb's formatting of enums is broken (rust-lang#58492). I also removed the emoji from the test because I couldn't get the docker image's gdb to print the emoji, just octal escapes (https://github.com/rust-lang/rust/pull/53154/files#r208263904).~
Configuration menu - View commit details
-
Copy full SHA for cb09ce2 - Browse repository at this point
Copy the full SHA cb09ce2View commit details -
Rollup merge of rust-lang#58730 - timvermeulen:internal_iteration, r=…
…scottmcm Have all methods of Filter and FilterMap use internal iteration This PR changes `Filter::{next, next_back, count}` and `FilterMap::{next, next_back}` to all use internal iteration. The `next` and `next_back` methods are changed to directly forward to `try_for_each` and `try_rfold` respectively, using `Result` as the `Try` type. I think that's okay? Alternatively, I could change their implementations to use `LoopState` instead if there's any benefit in doing so. r? @scottmcm
Configuration menu - View commit details
-
Copy full SHA for 11e7256 - Browse repository at this point
Copy the full SHA 11e7256View commit details -
Rollup merge of rust-lang#58743 - varkor:bulk-needstest-1, r=alexcric…
…hton Add tests for several E-needstest issues This PR adds a number of tests for various `E-needstest` errors. These tend to have been left open for a long time and seem unlikely to be closed otherwise. Closes rust-lang#10876. Closes rust-lang#22892. Closes rust-lang#26448. Closes rust-lang#26577. Closes rust-lang#26619. Closes rust-lang#27054. Closes rust-lang#28587. Closes rust-lang#44127. Closes rust-lang#44255. Closes rust-lang#55731. Closes rust-lang#57781.
Configuration menu - View commit details
-
Copy full SHA for fcf734c - Browse repository at this point
Copy the full SHA fcf734cView commit details -
Rollup merge of rust-lang#58750 - TimDiekmann:master, r=oli-obk
Make `Unique::as_ptr`, `NonNull::dangling` and `NonNull::cast` const
Configuration menu - View commit details
-
Copy full SHA for faeba62 - Browse repository at this point
Copy the full SHA faeba62View commit details -
Rollup merge of rust-lang#58780 - RalfJung:manually-drop, r=nagisa
ManuallyDrop != MaybeUninit Cc @Centril
Configuration menu - View commit details
-
Copy full SHA for 20409cc - Browse repository at this point
Copy the full SHA 20409ccView commit details -
Rollup merge of rust-lang#58782 - tspiteri:str-escape-self, r=kennytm
Replace `s` with `self` in docs for str methods taking self. Cherry picked from PR rust-lang#58596 which is blocked on some intra-doc link bugs.
Configuration menu - View commit details
-
Copy full SHA for 15c1c1f - Browse repository at this point
Copy the full SHA 15c1c1fView commit details -
Rollup merge of rust-lang#58785 - euclio:tool-lint-attrs, r=estebank
allow specifying attributes for tool lints Needed for clippy to fix `unused_doc_comments` warnings that will be exposed by rust-lang#57882 (and thus unblock it).
Configuration menu - View commit details
-
Copy full SHA for 9bbd413 - Browse repository at this point
Copy the full SHA 9bbd413View commit details -
Rollup merge of rust-lang#58788 - matthewjasper:compare-children, r=p…
…nkfelix Make migrate mode work at item level granularity Migrate mode now works entirely at the item level rather than the body level, ensuring that we don't lose any errors in contained closures. Closes rust-lang#58776 r? @pnkfelix
Configuration menu - View commit details
-
Copy full SHA for ba87c3d - Browse repository at this point
Copy the full SHA ba87c3dView commit details -
Rollup merge of rust-lang#58821 - alex:patch-1, r=Centril
Fixed a syntax error in the pin docs
Configuration menu - View commit details
-
Copy full SHA for 583bea5 - Browse repository at this point
Copy the full SHA 583bea5View commit details -
Rollup merge of rust-lang#58830 - Centril:rust_2018_idioms-tidy, r=ol…
…i-obk tidy: deny(rust_2018_idioms) r? @oli-obk
Configuration menu - View commit details
-
Copy full SHA for 5de3f96 - Browse repository at this point
Copy the full SHA 5de3f96View commit details