| Age | Commit message (Expand) | Author | Lines |
| 2020-08-08 | fix clippy::map_clone: use .cloned() instead of .map(|x| x.clone()) | Matthias Krüger | -1/+1 |
| 2020-08-08 | fix clippy::into_iter_on_ref: use .iter() instead of into_iter() on references. | Matthias Krüger | -3/+3 |
| 2020-08-08 | fix clippy::while_let_loop: use while let{} instead of loop { if ... break; } | Matthias Krüger | -7/+5 |
| 2020-08-08 | fix clippy::redundant_closure: remove redundant closures and call functions d... | Matthias Krüger | -2/+2 |
| 2020-08-07 | fix clippy::len_zero: use is_empty() instead of comparing .len() to zero | Matthias Krüger | -2/+2 |
| 2020-08-07 | fix clippy::unneeded_wildcard_pattern: remove redundant wildcard pattern | Matthias Krüger | -1/+1 |
| 2020-08-07 | fix clippy::unnecessary_mut_passed: function arg is not required to be mutable | Matthias Krüger | -1/+1 |
| 2020-08-07 | fix clippy::unit_arg: make it explicit that Ok(()) is being returned | Matthias Krüger | -2/+2 |
| 2020-08-07 | fix clippy::single_char_pattern: use char instead of string single-char pattern | Matthias Krüger | -1/+1 |
| 2020-08-07 | fix clippy::redundant_pattern_matching: use .is_some() instead of if let Some... | Matthias Krüger | -1/+2 |
| 2020-08-07 | fix clippy::redundant_clone: remove redundant clones | Matthias Krüger | -1/+1 |
| 2020-08-07 | fix clippy::map_identity: remove redundant .map(|x| x) call | Matthias Krüger | -1/+1 |
| 2020-08-07 | fix clippy::iter_next_slice: use .get(0) instead of .iter().next() | Matthias Krüger | -1/+1 |
| 2020-08-07 | fix clippy::filter_next: use .find(..) instead of .filter(..).next() | Matthias Krüger | -5/+1 |
| 2020-08-07 | fix clippy::expect_fun_call: use unwrap_or_else to prevent panic message from... | Matthias Krüger | -3/+3 |
| 2020-08-07 | Auto merge of #75255 - davidtwco:polymorphisation-symbol-mangling-v0-upvar-cl... | bors | -20/+280 |
| 2020-08-07 | instance: polymorphize `FnDef` substs | David Wood | -6/+31 |
| 2020-08-07 | instance: avoid unnecessary `mk_` calls | David Wood | -2/+10 |
| 2020-08-07 | ty: add `MAY_POLYMORPHIZE` flag | David Wood | -1/+19 |
| 2020-08-07 | instance: always polymorphize substs | David Wood | -38/+45 |
| 2020-08-07 | instance: polymorphize upvar closures/generators | David Wood | -20/+222 |
| 2020-08-07 | Auto merge of #74821 - oli-obk:const_eval_read_uninit_fast_path, r=wesleywiser | bors | -90/+266 |
| 2020-08-07 | Auto merge of #74627 - petrochenkov:docbeauty2, r=Aaron1011 | bors | -240/+312 |
| 2020-08-07 | Auto merge of #73842 - euclio:doctest-expn, r=GuillaumeGomez | bors | -7/+34 |
| 2020-08-07 | Auto merge of #70052 - Amanieu:hashbrown7, r=Mark-Simulacrum | bors | -50/+37 |
| 2020-08-07 | Fix natvis tests | Amanieu d'Antras | -15/+15 |
| 2020-08-06 | Rollup merge of #75227 - Amanieu:fix_asm_arch, r=Mark-Simulacrum | Manish Goregaokar | -3/+29 |
| 2020-08-06 | Rollup merge of #75203 - canova:btreemap-into-iter, r=dtolnay | Manish Goregaokar | -0/+23 |
| 2020-08-06 | Rollup merge of #75079 - jyn514:disambiguator, r=Manishearth | Manish Goregaokar | -49/+329 |
| 2020-08-07 | Handle new HashMap layout in CDB, MSVC, WinDbg, etc. | MaulingMonkey | -31/+4 |
| 2020-08-07 | Handle new HashMap layout in GDB and LLDB | Amanieu d'Antras | -4/+18 |
| 2020-08-06 | Add doc-comment for `kind_side_channel` | Joshua Nelson | -0/+3 |
| 2020-08-07 | Auto merge of #75233 - RalfJung:miri, r=RalfJung | bors | -10/+8 |
| 2020-08-07 | Rollup merge of #75236 - syntacticsugarglider:patch-1, r=jonas-schievink | Yuki Okushi | -1/+1 |
| 2020-08-07 | Rollup merge of #75232 - leijurv:patch-1, r=jonas-schievink | Yuki Okushi | -1/+1 |
| 2020-08-07 | Rollup merge of #75217 - GuillaumeGomez:cleanup-e0747, r=Dylan-DPC | Yuki Okushi | -2/+2 |
| 2020-08-07 | Rollup merge of #75210 - nnethercote:change-type-of-available_cgus, r=ecstati... | Yuki Okushi | -6/+5 |
| 2020-08-07 | Rollup merge of #75190 - GuillaumeGomez:cleanup-e0746, r=Dylan-DPC | Yuki Okushi | -4/+6 |
| 2020-08-07 | Rollup merge of #75188 - Aaron1011:fix/fieldless-tuple-error, r=varkor | Yuki Okushi | -4/+28 |
| 2020-08-07 | Rollup merge of #75183 - Aaron1011:toolstate/a-rustfmt, r=nikomatsakis | Yuki Okushi | -1/+1 |
| 2020-08-07 | Rollup merge of #75181 - WaffleLapkin:patch-2, r=ecstaticmorse | Yuki Okushi | -1/+1 |
| 2020-08-07 | Rollup merge of #74888 - infinity0:ignore-endian-big, r=nikomatsakis | Yuki Okushi | -9/+28 |
| 2020-08-06 | Fix typo "biset" -> "bitset" | Izzy Swart | -1/+1 |
| 2020-08-06 | Remove dead code | Joshua Nelson | -17/+1 |
| 2020-08-06 | Fix outdated code | Joshua Nelson | -6/+4 |
| 2020-08-06 | Improve tests | Joshua Nelson | -19/+22 |
| 2020-08-06 | Use the proper kind for associated items | Joshua Nelson | -13/+25 |
| 2020-08-06 | update Miri | Ralf Jung | -10/+8 |
| 2020-08-06 | Fix typo "TraitObligatiom" -> "TraitObligation" | Leijurv | -1/+1 |
| 2020-08-06 | Still print help even if there's no span | Joshua Nelson | -0/+2 |