| Age | Commit message (Expand) | Author | Lines |
| 2020-03-05 | Don't pass &mut where immutable reference (&) is sufficient (clippy::unnecess... | Matthias Krüger | -4/+4 |
| 2020-03-05 | Use righthand '&' instead of lefthand "ref". (clippy::toplevel_ref_arg) | Matthias Krüger | -2/+2 |
| 2020-03-05 | Use simple 'for i in x' loops instead of 'while let Some(x) = x.next()' loops... | Matthias Krüger | -3/+2 |
| 2020-03-05 | Const items have by default a static lifetime, there's no need to annotate it... | Matthias Krüger | -2/+2 |
| 2020-03-05 | Opt out of CTFE if the 'const_eval_limit' is set to 0 | Christoph Schmidler | -7/+15 |
| 2020-03-04 | PlaceRef<'a, 'tcx> -> PlaceRef<'tcx> | Santiago Pastorino | -41/+37 |
| 2020-03-04 | Make PlaceRef lifetimes of in_projection be both 'tcx | Santiago Pastorino | -4/+4 |
| 2020-03-04 | Make PlaceRef lifetimes of is_prefix_of be both 'tcx | Santiago Pastorino | -4/+4 |
| 2020-03-04 | Make PlaceRef lifetimes of classify_drop_access_kind be both 'tcx | Santiago Pastorino | -1/+1 |
| 2020-03-04 | Make PlaceRef lifetimes of closure_span be both 'tcx | Santiago Pastorino | -1/+1 |
| 2020-03-04 | Make PlaceRef lifetimes of move_spans be both 'tcx | Santiago Pastorino | -1/+1 |
| 2020-03-04 | Make PlaceRef lifetimes of borrowed_content_source be both 'tcx | Santiago Pastorino | -2/+2 |
| 2020-03-04 | Make PlaceRef lifetimes of describe_field be both 'tcx | Santiago Pastorino | -1/+1 |
| 2020-03-04 | Make PlaceRef lifetimes of add_moved_or_invoked_closure_note be both 'tcx | Santiago Pastorino | -1/+1 |
| 2020-03-04 | Make PlaceRef lifetimes of is_upvar_field_projection be both 'tcx | Santiago Pastorino | -6/+6 |
| 2020-03-04 | Don't use "if let" bindings to only check a value and not actually bind anyth... | Matthias Krüger | -3/+3 |
| 2020-03-04 | Make PlaceRef lifetimes of move_path_for_place be both 'tcx | Santiago Pastorino | -1/+1 |
| 2020-03-04 | Make PlaceRef lifetimes of move_path_closest_to be both 'tcx | Santiago Pastorino | -2/+2 |
| 2020-03-04 | Make PlaceRef lifetimes of uninitialized_error_reported be both 'tcx | Santiago Pastorino | -1/+1 |
| 2020-03-04 | Make PlaceRef lifetimes of move_error_reported be both 'tcx | Santiago Pastorino | -9/+10 |
| 2020-03-04 | Make PlaceRef lifetimes of borrow_conflict_place be both 'tcx | Santiago Pastorino | -4/+5 |
| 2020-03-04 | cover some more nearby cases | Ralf Jung | -1/+0 |
| 2020-03-04 | use integer assoc consts instead of methods | Ralf Jung | -4/+4 |
| 2020-03-04 | Auto merge of #69550 - RalfJung:scalar, r=oli-obk | bors | -43/+41 |
| 2020-03-03 | Rollup merge of #69650 - matthiaskrgr:clnp, r=varkor | Dylan DPC | -5/+2 |
| 2020-03-03 | Rollup merge of #69565 - RalfJung:assert, r=eddyb | Dylan DPC | -7/+7 |
| 2020-03-03 | Make PlaceRef lifetimes of RootPlace be both 'tcx | Santiago Pastorino | -6/+6 |
| 2020-03-03 | Use correct place for `enum_place` | Dylan MacKenzie | -20/+28 |
| 2020-03-03 | rename TraitItemKind::Method -> Fn | Mark Mansi | -2/+2 |
| 2020-03-03 | DefKind::Method -> DefKind::AssocFn | Mark Mansi | -1/+1 |
| 2020-03-03 | Auto merge of #69482 - lqd:poloniusup, r=nikomatsakis | bors | -42/+57 |
| 2020-03-03 | Use .next() instead of .nth(0) on iterators. | Matthias Krüger | -2/+2 |
| 2020-03-03 | Use let instead of match to get value of enum with single variant. | Matthias Krüger | -5/+2 |
| 2020-03-02 | s/merged_block_count/statements_to_merge/g | Markus Westerlind | -3/+3 |
| 2020-03-02 | Auto merge of #69257 - RalfJung:layout-visitor, r=eddyb | bors | -174/+191 |
| 2020-03-01 | Auto merge of #69408 - RalfJung:canonical-alloc-id, r=oli-obk | bors | -66/+58 |
| 2020-03-01 | `delay_span_bug` when codegen cannot select obligation | Esteban Küber | -1/+1 |
| 2020-03-01 | Auto merge of #69606 - JohnTitor:rollup-i3nrrcf, r=JohnTitor | bors | -55/+73 |
| 2020-03-01 | Rollup merge of #69580 - matthiaskrgr:map_clone, r=Centril | Yuki Okushi | -1/+1 |
| 2020-03-01 | Rollup merge of #69562 - ecstatic-morse:dataflow-generator-discriminant, r=ol... | Yuki Okushi | -54/+72 |
| 2020-03-01 | Auto merge of #69295 - ecstatic-morse:unified-dataflow-generators, r=tmandry | bors | -158/+159 |
| 2020-03-01 | Auto merge of #68943 - ecstatic-morse:no-useless-drop-on-enum-variants, r=mat... | bors | -15/+30 |
| 2020-03-01 | Auto merge of #69592 - petrochenkov:nosyntax, r=Centril | bors | -14/+14 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -14/+14 |
| 2020-02-29 | Rollup merge of #69572 - matthiaskrgr:try_err_and_iter_on_ref, r=Centril | Dylan DPC | -10/+8 |
| 2020-02-29 | Make it build again | Vadim Petrochenkov | -1/+1 |
| 2020-02-29 | use .copied() instead of .map(|x| *x) on iterators | Matthias Krüger | -1/+1 |
| 2020-02-29 | downgrade some assertions to debug_ again | Ralf Jung | -5/+7 |
| 2020-02-28 | Process `RequiresStorage` results in pre-order | Dylan MacKenzie | -2/+3 |
| 2020-02-29 | use .iter() instead of .into_iter() on references. | Matthias Krüger | -10/+8 |