| Age | Commit message (Expand) | Author | Lines |
| 2020-03-08 | Rollup merge of #69646 - RalfJung:layout-visitor, r=eddyb | Mazdak Farrokhzad | -356/+472 |
| 2020-03-08 | Rollup merge of #69631 - RalfJung:rust-src, r=Mark-Simulacrum | Mazdak Farrokhzad | -2/+0 |
| 2020-03-08 | fix memory leak when vec::IntoIter panics during drop | Ralf Jung | -4/+12 |
| 2020-03-08 | prevent potential promotion in const_discriminant | Bastian Kauschke | -3/+5 |
| 2020-03-08 | override flags from compiletest | 12101111 | -1/+2 |
| 2020-03-08 | constify `mem::discriminant` | Bastian Kauschke | -1/+32 |
| 2020-03-08 | Apply suggestions from code review | Jonas Schievink | -2/+2 |
| 2020-03-08 | fix type size mismatch on 32bit | Ralf Jung | -20/+19 |
| 2020-03-08 | Rollup merge of #69810 - thekuom:test/67523-dynamic-semantics-bindings-after-... | Mazdak Farrokhzad | -0/+48 |
| 2020-03-08 | Rollup merge of #69805 - petrochenkov:importname, r=Centril | Mazdak Farrokhzad | -325/+283 |
| 2020-03-08 | Rollup merge of #69776 - ssomers:fix69769, r=Mark-Simulacrum | Mazdak Farrokhzad | -2/+35 |
| 2020-03-08 | Rollup merge of #69641 - ehuss:update-books, r=ehuss | Mazdak Farrokhzad | -0/+0 |
| 2020-03-08 | Rollup merge of #69599 - Centril:typeck-tweak-wording, r=davidtwco | Mazdak Farrokhzad | -10/+18 |
| 2020-03-08 | Rollup merge of #69561 - JohnTitor:clean-up-unstable-book, r=Mark-Simulacrum | Mazdak Farrokhzad | -58/+20 |
| 2020-03-08 | Rollup merge of #69548 - LeSeulArtichaut:assert-errors, r=petrochenkov | Mazdak Farrokhzad | -21/+11 |
| 2020-03-08 | Rollup merge of #69422 - JohnTitor:remove-unwrap, r=Xanewok | Mazdak Farrokhzad | -35/+43 |
| 2020-03-08 | Update tests | Guillaume Gomez | -36/+52 |
| 2020-03-08 | Allow ZSTs in `AllocRef` | Tim Diekmann | -81/+96 |
| 2020-03-08 | clean up E0392 explanation | Guillaume Gomez | -2/+3 |
| 2020-03-08 | Cleanup E0391 explanation | Guillaume Gomez | -3/+5 |
| 2020-03-08 | clean up E0308 explanation | Guillaume Gomez | -6/+8 |
| 2020-03-08 | Simplify checking of crt_static_feature() | 12101111 | -26/+10 |
| 2020-03-08 | Auto merge of #69804 - Centril:rollup-u86dc1g, r=Centril | bors | -381/+285 |
| 2020-03-08 | Add test for unnecessary panic branches | Jonas Schievink | -0/+34 |
| 2020-03-08 | Change index for SwitchInt case | Jonas Schievink | -1/+1 |
| 2020-03-07 | Implement BitOr and BitOrAssign for the NonZero integer types | Thom Chiovoloni | -0/+87 |
| 2020-03-08 | Poison generators when any terminator unwinds | Jonas Schievink | -5/+31 |
| 2020-03-07 | refactor: Add an alias for the SmallVec in dep_graph | Markus Westerlind | -10/+8 |
| 2020-03-07 | refactor: Move a borrow_mut and unwrap out of a loop | Markus Westerlind | -6/+8 |
| 2020-03-07 | refactor: Exhaustive matching in method/probe.rs | Markus Westerlind | -75/+39 |
| 2020-03-07 | Don't insert panic when generator can not unwind | Jonas Schievink | -1/+45 |
| 2020-03-07 | reduce references on match patterns (clippy::match_ref_pats) | Matthias Krüger | -9/+9 |
| 2020-03-07 | Use writeln!(fmt, "word") instead of write!(fmt, "word\n") (clippy::write_wit... | Matthias Krüger | -2/+2 |
| 2020-03-07 | libtest: remove redundant argument to writeln!() (clippy::writeln_empty_string) | Matthias Krüger | -8/+8 |
| 2020-03-07 | remove unneeded mutable references (cippy::unnecessary_mut_passed) | Matthias Krüger | -3/+3 |
| 2020-03-07 | libtest: declare variables as floats instead of casting them (clippy::unneces... | Matthias Krüger | -8/+8 |
| 2020-03-07 | rustdoc: remove redundant static lifetimes (clippy::redundant_static_lifetimes) | Matthias Krüger | -28/+28 |
| 2020-03-07 | call .as_deref() instead of .as_ref().map(Deref::deref) (clippy::option_as_re... | Matthias Krüger | -5/+1 |
| 2020-03-07 | iterate over a maps values directly. (clippy::for_kv_map) | Matthias Krüger | -1/+1 |
| 2020-03-07 | rustdoc: simplify boolean condition (clippy::nonminimal_bool) | Matthias Krüger | -1/+1 |
| 2020-03-07 | Use ?-operator in more places (clippy::question_mark, had some false negative... | Matthias Krüger | -47/+13 |
| 2020-03-07 | rustdoc: Use .any(p) instead of find(p).is_some(). (clippy::search_is_some) | Matthias Krüger | -5/+3 |
| 2020-03-07 | rustdoc: don't call into_iter() on iterator. (clippy::identity_conversion) | Matthias Krüger | -1/+1 |
| 2020-03-07 | Don't insert panic when generator can not return | Jonas Schievink | -2/+29 |
| 2020-03-07 | test(bindings_after_at): add dynamic drop tests for bindings_after_at | Matthew Kuo | -0/+48 |
| 2020-03-07 | Apply review feedback | Amanieu d'Antras | -2/+2 |
| 2020-03-07 | resolve: `directive` -> `import` | Vadim Petrochenkov | -237/+215 |
| 2020-03-07 | Rollup merge of #69797 - jongiddy:convert-version, r=Mark-Simulacrum | Mazdak Farrokhzad | -1/+1 |
| 2020-03-07 | Rollup merge of #69794 - TimDiekmann:dangling, r=Amanieu | Mazdak Farrokhzad | -0/+16 |
| 2020-03-07 | Rollup merge of #69787 - spastorino:use-local-directly-its-copy, r=oli-obk | Mazdak Farrokhzad | -12/+12 |