| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-01-18 | Auto merge of #87648 - JulianKnodt:const_eq_constrain, r=oli-obk | bors | -4/+9 | |
| allow eq constraints on associated constants Updates #70256 (cc `@varkor,` `@Centril)` | ||||
| 2022-01-18 | Auto merge of #93001 - flip1995:clippyup, r=Manishearth | bors | -28/+167 | |
| Out of cycle Clippy update I want to do an out-of-cycle sync for rust-lang/rust-clippy#8295, and possibly backport this to stable together with https://github.com/rust-lang/rust/issues/92938. If this doesn't get backported to stable, then I at least want to backport it to beta. r? `@Manishearth` | ||||
| 2022-01-17 | Update w/ comments | kadmin | -1/+1 | |
| Removes uses of ty() where a method is implemented on TypeFoldable, and also directly formats a Term. | ||||
| 2022-01-17 | Update term for use in more places | kadmin | -4/+9 | |
| Replace use of `ty()` on term and use it in more places. This will allow more flexibility in the future, but slightly worried it allows items which are consts which only accept types. | ||||
| 2022-01-17 | Use Term in ProjectionPredicate | kadmin | -3/+3 | |
| ProjectionPredicate should be able to handle both associated types and consts so this adds the first step of that. It mainly just pipes types all the way down, not entirely sure how to handle consts, but hopefully that'll come with time. | ||||
| 2022-01-17 | Merge commit '8d14c94b5c0a66241b4244f1c60ac5859cec1d97' into clippyup | flip1995 | -28/+167 | |
| 2022-01-16 | Fix Visitor::NestedFilter in Clippy | Cameron Steffen | -21/+15 | |
| 2022-01-16 | Auto merge of #92805 - BoxyUwU:revert-lazy-anon-const-substs, r=lcnr | bors | -5/+5 | |
| partially revertish `lazily "compute" anon const default substs` reverts #87280 except for some of the changes around `ty::Unevaluated` having a visitor and a generic for promoted why revert: <https://github.com/rust-lang/rust/pull/92805#issuecomment-1010736049> r? `@lcnr` | ||||
| 2022-01-15 | Return a LocalDefId in get_parent_item. | Camille GILLOT | -1/+1 | |
| 2022-01-15 | initial revert | Ellen | -5/+5 | |
| 2022-01-13 | Merge commit '97a5daa65908e59744e2bc625b14849352231c75' into clippyup | flip1995 | -61/+89 | |
| 2021-12-30 | Merge commit '0eff589afc83e21a03a168497bbab6b4dfbb4ef6' into clippyup | flip1995 | -9/+32 | |
| 2021-12-19 | Auto merge of #91957 - nnethercote:rm-SymbolStr, r=oli-obk | bors | -11/+11 | |
| Remove `SymbolStr` This was originally proposed in https://github.com/rust-lang/rust/pull/74554#discussion_r466203544. As well as removing the icky `SymbolStr` type, it allows the removal of a lot of `&` and `*` occurrences. Best reviewed one commit at a time. r? `@oli-obk` | ||||
| 2021-12-17 | Merge commit '23d11428de3e973b34a5090a78d62887f821c90e' into clippyup | flip1995 | -18/+633 | |
| 2021-12-15 | Remove unnecessary sigils around `Ident::as_str()` calls. | Nicholas Nethercote | -5/+5 | |
| 2021-12-15 | Remove unnecessary sigils around `Symbol::as_str()` calls. | Nicholas Nethercote | -1/+1 | |
| 2021-12-15 | Remove `SymbolStr`. | Nicholas Nethercote | -5/+5 | |
| By changing `as_str()` to take `&self` instead of `self`, we can just return `&str`. We're still lying about lifetimes, but it's a smaller lie than before, where `SymbolStr` contained a (fake) `&'static str`! | ||||
| 2021-12-13 | Fix clippy uses of QPath::LangItem | Esteban Kuber | -1/+1 | |
| 2021-12-06 | Merge commit 'a5d597637dcb78dc73f93561ce474f23d4177c35' into clippyup | flip1995 | -127/+375 | |
| 2021-11-28 | Take a LocalDefId in expect_*item. | Camille GILLOT | -1/+1 | |
| 2021-11-04 | Merge commit 'e18101137866b79045fee0ef996e696e68c920b4' into clippyup | flip1995 | -3/+3 | |
| 2021-10-21 | Merge commit '91496c2ac6abf6454c413bb23e8becf6b6dc20ea' into clippyup | flip1995 | -18/+7 | |
| 2021-10-07 | Merge commit 'b7f3f7f6082679da2da9a0b3faf1b5adef3afd3b' into clippyup | flip1995 | -12/+12 | |
| 2021-10-02 | Make diangostic item names consistent | Cameron Steffen | -58/+58 | |
| 2021-09-28 | Merge commit 'cb7915b00c235e9b5861564f3be78dba330980ee' into clippyup | flip1995 | -36/+36 | |
| 2021-09-25 | Rollup merge of #89216 - r00ster91:bigo, r=dtolnay | Manish Goregaokar | -1/+1 | |
| Consistent big O notation This makes the big O time complexity notation in places with markdown support more consistent. Inspired by #89210 | ||||
| 2021-09-24 | consistent big O notation | r00ster91 | -1/+1 | |
| 2021-09-16 | Fix clippy | jackh726 | -2/+2 | |
| 2021-09-11 | Rebase fallout. | Camille GILLOT | -1/+1 | |
| 2021-09-08 | Merge commit '27afd6ade4bb1123a8bf82001629b69d23d62aff' into clippyup | flip1995 | -21/+265 | |
| 2021-09-02 | rustc_target: move `LayoutOf` to `ty::layout`. | Eduard-Mihai Burtescu | -1/+1 | |
| 2021-08-26 | add `tcx` to `fn walk` | lcnr | -5/+5 | |
| 2021-08-15 | Introduce hir::ExprKind::Let - Take 2 | Caio | -2/+2 | |
| 2021-08-12 | Merge commit '7bfc26ec8e7a454786668e7e52ffe527fc649735' into clippyup | flip1995 | -24/+128 | |
| 2021-07-31 | Fix clippy | Vadim Petrochenkov | -2/+2 | |
| 2021-07-29 | Merge commit '0cce3f643bfcbb92d5a1bb71858c9cbaff749d6b' into clippyup | flip1995 | -330/+339 | |
| 2021-07-15 | Merge commit '54a20a02ecd0e1352a871aa0990bcc8b8b03173e' into clippyup | flip1995 | -54/+18 | |
| 2021-07-01 | Merge commit '61eb38aeda6cb54b93b872bf503d70084c4d621c' into clippyup | flip1995 | -68/+162 | |
| 2021-06-03 | Merge commit '3ae8faff4d46ad92f194c2a4b941c3152a701b31' into clippyup | flip1995 | -72/+275 | |
| 2021-05-20 | Merge commit '9e3cd88718cd1912a515d26dbd9c4019fd5a9577' into clippyup | flip1995 | -11/+15 | |
| 2021-05-06 | Merge commit 'b71f3405606d49b9735606b479c3415a0ca9810f' into clippyup | flip1995 | -40/+45 | |
| 2021-04-27 | Merge commit '7c7683c8efe447b251d6c5ca6cce51233060f6e8' into clippyup | flip1995 | -25/+25 | |
| 2021-04-22 | Merge commit '98e2b9f25b6db4b2680a3d388456d9f95cb28344' into clippyup | flip1995 | -149/+181 | |
| 2021-04-08 | Merge commit 'b40ea209e7f14c8193ddfc98143967b6a2f4f5c9' into clippyup | flip1995 | -677/+826 | |
| 2021-03-25 | Merge commit '0e87918536b9833bbc6c683d1f9d51ee2bf03ef1' into clippyup | flip1995 | -531/+862 | |
| 2021-03-12 | Merge commit '6ed6f1e6a1a8f414ba7e6d9b8222e7e5a1686e42' into clippyup | flip1995 | -2007/+2522 | |
| 2021-03-01 | Use diagnostic items in into_iter_collections | Cameron Steffen | -2/+2 | |
| 2021-02-26 | Add missing diagnostic item Symbols | Cameron Steffen | -3/+3 | |
| 2021-02-17 | Auto merge of #81993 - flip1995:clippyup, r=Manishearth | bors | -39/+207 | |
| Update Clippy Biweekly Clippy update r? `@Manishearth` | ||||
| 2021-02-15 | Only store a LocalDefId in hir::ImplItem. | Camille GILLOT | -5/+4 | |
