-
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 8 pull requests #69819
Rollup of 8 pull requests #69819
Commits on Feb 24, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f85b0c4 - Browse repository at this point
Copy the full SHA f85b0c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for a211a82 - Browse repository at this point
Copy the full SHA a211a82View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5307edc - Browse repository at this point
Copy the full SHA 5307edcView commit details
Commits on Feb 29, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f9db3c2 - Browse repository at this point
Copy the full SHA f9db3c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c9e87e - Browse repository at this point
Copy the full SHA 4c9e87eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c55df37 - Browse repository at this point
Copy the full SHA c55df37View commit details
Commits on Mar 1, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 2746e12 - Browse repository at this point
Copy the full SHA 2746e12View commit details
Commits on Mar 4, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 8ea676e - Browse repository at this point
Copy the full SHA 8ea676eView commit details
Commits on Mar 6, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 44c97c4 - Browse repository at this point
Copy the full SHA 44c97c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6548be2 - Browse repository at this point
Copy the full SHA 6548be2View commit details -
Configuration menu - View commit details
-
Copy full SHA for d47196b - Browse repository at this point
Copy the full SHA d47196bView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa1435b - Browse repository at this point
Copy the full SHA aa1435bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4807e93 - Browse repository at this point
Copy the full SHA 4807e93View commit details -
Configuration menu - View commit details
-
Copy full SHA for f481547 - Browse repository at this point
Copy the full SHA f481547View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4584e75 - Browse repository at this point
Copy the full SHA 4584e75View commit details -
Configuration menu - View commit details
-
Copy full SHA for f0586f9 - Browse repository at this point
Copy the full SHA f0586f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 58f8cc2 - Browse repository at this point
Copy the full SHA 58f8cc2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 295c2d6 - Browse repository at this point
Copy the full SHA 295c2d6View commit details
Commits on Mar 7, 2020
-
resolve:
ImportDirective
->Import
`ImportDirectiveSubclass` -> `ImportKind` `ImportKind::SingleImport` -> `ImportKind::Single` `ImportKind::GlobImport` -> `ImportKind::Glob`
Configuration menu - View commit details
-
Copy full SHA for 1915bf1 - Browse repository at this point
Copy the full SHA 1915bf1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 66d7a88 - Browse repository at this point
Copy the full SHA 66d7a88View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e88bec - Browse repository at this point
Copy the full SHA 2e88becView commit details
Commits on Mar 8, 2020
-
Rollup merge of rust-lang#69422 - JohnTitor:remove-unwrap, r=Xanewok
Remove use of `unwrap()` from save-analysis Fix rust-lang#69409, fix rust-lang#69416
Configuration menu - View commit details
-
Copy full SHA for 60c38ee - Browse repository at this point
Copy the full SHA 60c38eeView commit details -
Rollup merge of rust-lang#69561 - JohnTitor:clean-up-unstable-book, r…
…=Mark-Simulacrum Clean up unstable book - rust-lang#58402's feature was renamed to `tidy_test_never_used_anywhere_else` and it is now used for tidy only - `read_initializer` link is wrong and the doc should be auto-generated so removed - Add dummy doc for `link_cfg` - Stop generating `compiler_builtins_lib` doc in favor of b8ccc0f - Make `rustc_attrs` tracking issue "None"
Configuration menu - View commit details
-
Copy full SHA for 12920f4 - Browse repository at this point
Copy the full SHA 12920f4View commit details -
Rollup merge of rust-lang#69599 - Centril:typeck-tweak-wording, r=dav…
…idtwco check_binding_alt_eq_ty: improve precision wrt. `if let` Follow up to rust-lang#69452 -- this tweaks the `check_binding_alt_eq_ty` logic wrt. wording so that `if let` doesn't include "in this arm" (because there can only ever be one arm). r? @estebank
Configuration menu - View commit details
-
Copy full SHA for 7920d7b - Browse repository at this point
Copy the full SHA 7920d7bView commit details -
Rollup merge of rust-lang#69641 - ehuss:update-books, r=ehuss
Update books ## nomicon 8 commits in 3e6e1001dc6e095dbd5c88005e80969f60e384e1..9f797e65e6bcc79419975b17aff8e21c9adc039f 2019-12-14 22:08:52 +0000 to 2020-03-04 03:45:13 +0100 - Rustup to latest rustc (rust-lang/nomicon#203) - (minor) Add backticks around type names (rust-lang/nomicon#197) - Add book.toml (rust-lang/nomicon#185) - Rename `Alloc` to `AllocRef` (rust-lang/nomicon#188) - Lifetimes: explain how to fix destructor example (rust-lang/nomicon#195) - mention soundness (rust-lang/nomicon#194) - Fix example in FFI section Calling Rust from C (rust-lang/nomicon#193) - Removed repeated word (rust-lang/nomicon#191) ## reference 8 commits in 64239df..559e09c 2020-02-10 19:05:13 +0100 to 2020-03-02 01:17:14 +0100 - Syntax error fix (rust-lang/reference#769) - Fix incorrect pseudocode for #[repr(C)] struct alignment (rust-lang/reference#766) - Replace "Field-Less" with "Fieldless" (rust-lang/reference#768) - Removed repeated word (rust-lang/reference#767) - Update for change in const lint name. (rust-lang/reference#764) - semantic type -> resolved type (rust-lang/reference#761) - add behavior change of relative paths without `self` in 2018 edition (rust-lang/reference#757) - assignment operator expressions -> compound assignment expressions (rust-lang/reference#759) ## rust-by-example 3 commits in 32facd5522ddbbf37baf01e4e4b6562bc55c071a..db57f899ea2a56a544c8d280cbf033438666273d 2020-02-11 09:25:06 -0300 to 2020-02-18 17:46:46 -0300 - Minor typo fix in src/mod/visibility (rust-lang/rust-by-example#1309) - Don't suggest Into implements a reverse conversion (rust-lang/rust-by-example#1307) - Improve grammar in example of 'in let' section (rust-lang/rust-by-example#1308) ## embedded-book 2 commits in b2e1092bf67bd4d7686c4553f186edbb7f5f92db..b81ffb7a6f4c5aaed92786e770e99db116aa4ebd 2020-01-30 08:45:46 +0000 to 2020-02-27 08:06:04 +0000 - Setting output to `high` needs a `true` argument (rust-embedded/book#227) - Add licence notes to index.md (rust-embedded/book#226)
Configuration menu - View commit details
-
Copy full SHA for 1c5b0e2 - Browse repository at this point
Copy the full SHA 1c5b0e2View commit details -
Rollup merge of rust-lang#69646 - RalfJung:layout-visitor, r=eddyb
Configuration menu - View commit details
-
Copy full SHA for aa8aeaa - Browse repository at this point
Copy the full SHA aa8aeaaView commit details -
Rollup merge of rust-lang#69776 - ssomers:fix69769, r=Mark-Simulacrum
Fix & test leak of some BTreeMap nodes on panic during `into_iter` Fixes rust-lang#69769
Configuration menu - View commit details
-
Copy full SHA for 958e8b7 - Browse repository at this point
Copy the full SHA 958e8b7View commit details -
Rollup merge of rust-lang#69805 - petrochenkov:importname, r=Centril
resolve: Modernize some naming `ImportDirective` -> `Import` `ImportDirectiveSubclass` -> `ImportKind` `ImportKind::SingleImport` -> `ImportKind::Single` `ImportKind::GlobImport` -> `ImportKind::Glob`
Configuration menu - View commit details
-
Copy full SHA for 36025b3 - Browse repository at this point
Copy the full SHA 36025b3View commit details -
Rollup merge of rust-lang#69810 - thekuom:test/67523-dynamic-semantic…
…s-bindings-after-at, r=Centril test(bindings_after_at): add dynamic drop tests for bindings_after_at Fixes rust-lang#67523. Working towards rust-lang#65490.
Configuration menu - View commit details
-
Copy full SHA for 72ad36f - Browse repository at this point
Copy the full SHA 72ad36fView commit details