about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2020-08-09Rollup merge of #75292 - slanterns:cleanup-E0502, r=GuillaumeGomezYuki Okushi-2/+2
2020-08-09Rollup merge of #75291 - GuillaumeGomez:cleanup-e0750, r=pickfireYuki Okushi-6/+19
2020-08-09Rollup merge of #75290 - rust-lang:min_const_generics-version, r=jonas-schievinkYuki Okushi-1/+1
2020-08-09Rollup merge of #74712 - strom-und-spiele:E0271-cleanup, r=Mark-SimulacrumYuki Okushi-30/+13
2020-08-08Remove E0750 from unchecked error codesGuillaume Gomez-2/+1
2020-08-08Clean up E0750 explanationGuillaume Gomez-4/+18
2020-08-08Auto merge of #75260 - davidtwco:polymorphization-promoted-substs, r=lcnrbors-15/+104
2020-08-08Auto merge of #74533 - nikic:issue-74425, r=eddybbors-8/+32
2020-08-08Use `&` instead of `let ref` in E0502 Slanterns-2/+2
2020-08-08fix `min_const_generics` versionBastian Kauschke-1/+1
2020-08-08Update E0271.mdstrom-und-spiele-30/+13
2020-08-08Emit == null instead of <= nullNikita Popov-8/+32
2020-08-08Auto merge of #74932 - nnethercote:rm-ast-session-globals, r=petrochenkovbors-841/+865
2020-08-08Auto merge of #75276 - JohnTitor:rollup-rz4hs0w, r=JohnTitorbors-93/+152
2020-08-08Rollup merge of #75270 - matthiaskrgr:clippy_aug_1, r=Dylan-DPCYuki Okushi-51/+46
2020-08-08Rollup merge of #75267 - estebank:cleanup, r=Dylan-DPCYuki Okushi-19/+21
2020-08-08Rollup merge of #75259 - giraffate:add_missing_backtick, r=lcnrYuki Okushi-1/+1
2020-08-08Rollup merge of #75237 - nbdd0121:rustdoc, r=jyn514Yuki Okushi-18/+78
2020-08-08Rollup merge of #75224 - Aaron1011:fix/function-arguments-naked, r=AmanieuYuki Okushi-4/+6
2020-08-08Increase `recursion_limit` in `librustc_plugin_impl`.Nicholas Nethercote-0/+1
2020-08-08Eliminate `librustc_hir`'s dependency on `librustc_session`.Nicholas Nethercote-12/+25
2020-08-08Eliminate the `SessionGlobals` from `librustc_ast`.Nicholas Nethercote-804/+815
2020-08-08Remove some unnecessary uses of `Option`.Nicholas Nethercote-40/+39
2020-08-08Auto merge of #74877 - lcnr:min_const_generics, r=oli-obkbors-101/+471
2020-08-08Cross-crate doc inlining test case for elided lifetimeGary Guo-14/+22
2020-08-08Auto merge of #75048 - eggyal:force-no-tco-start-backtrace-frame, r=Mark-Simu...bors-0/+23
2020-08-08fix clippy::needless_return: remove unneeded return statementsMatthias Krüger-12/+12
2020-08-08fix clippy::clone_on_copy: don't clone types that are copyMatthias Krüger-7/+7
2020-08-08fix clippy::map_clone: use .cloned() instead of .map(|x| x.clone())Matthias Krüger-1/+1
2020-08-08fix clippy::into_iter_on_ref: use .iter() instead of into_iter() on references.Matthias Krüger-3/+3
2020-08-08fix clippy::while_let_loop: use while let{} instead of loop { if ... break; }Matthias Krüger-7/+5
2020-08-08fix clippy::redundant_closure: remove redundant closures and call functions d...Matthias Krüger-2/+2
2020-08-07Display elided lifetime for external pathsGary Guo-4/+20
2020-08-07Display elided lifetime for non-reference type in docGary Guo-14/+50
2020-08-07fix clippy::len_zero: use is_empty() instead of comparing .len() to zeroMatthias Krüger-2/+2
2020-08-07fix clippy::unneeded_wildcard_pattern: remove redundant wildcard patternMatthias Krüger-1/+1
2020-08-07fix clippy::unnecessary_mut_passed: function arg is not required to be mutableMatthias Krüger-1/+1
2020-08-07fix clippy::unit_arg: make it explicit that Ok(()) is being returnedMatthias Krüger-2/+2
2020-08-07fix clippy::single_char_pattern: use char instead of string single-char patternMatthias Krüger-1/+1
2020-08-07fix clippy::redundant_pattern_matching: use .is_some() instead of if let Some...Matthias Krüger-1/+2
2020-08-07fix clippy::redundant_clone: remove redundant clonesMatthias Krüger-1/+1
2020-08-07fix clippy::map_identity: remove redundant .map(|x| x) callMatthias Krüger-1/+1
2020-08-07fix clippy::iter_next_slice: use .get(0) instead of .iter().next()Matthias Krüger-1/+1
2020-08-07fix clippy::filter_next: use .find(..) instead of .filter(..).next()Matthias Krüger-5/+1
2020-08-07fix clippy::expect_fun_call: use unwrap_or_else to prevent panic message from...Matthias Krüger-3/+3
2020-08-07Small cleanupEsteban Küber-19/+21
2020-08-07Prevent `__rust_begin_short_backtrace` frames from being tail-call optimised ...Alan Egerton-0/+23
2020-08-07Auto merge of #75255 - davidtwco:polymorphisation-symbol-mangling-v0-upvar-cl...bors-20/+280
2020-08-07instance: polymorphize `FnDef` substsDavid Wood-6/+31
2020-08-07instance: avoid unnecessary `mk_` callsDavid Wood-2/+10