about summary refs log tree commit diff
path: root/clippy_lints/src/future_not_send.rs
AgeCommit message (Expand)AuthorLines
2023-12-01Merge commit 'f0cdee4a3f094416189261481eae374b76792af1' into clippy-subtree-syncPhilipp Krones-1/+1
2023-11-26rustc: `hir().local_def_id_to_hir_id()` -> `tcx.local_def_id_to_hir_id()` cle...Vadim Petrochenkov-1/+1
2023-11-02Merge commit '09ac14c901abc43bd0d617ae4a44e8a4fed98d9c' into clippyupPhilipp Krones-2/+2
2023-07-17Rename arg_iter to iter_instantiatedMichael Goulet-1/+1
2023-07-14refactor(rustc_middle): Substs -> GenericArgMahdi Dibaiee-2/+2
2023-06-22Migrate item_bounds to ty::ClauseMichael Goulet-1/+1
2023-06-19s/Clause/ClauseKindMichael Goulet-2/+2
2023-05-03Restrict `From<S>` for `{D,Subd}iagnosticMessage`.Nicholas Nethercote-1/+1
2023-04-20add EarlyBinder to output of explicit_item_bounds; replace bound_explicit_ite...Kyle Matsuda-1/+1
2023-04-20change usages of explicit_item_bounds to bound_explicit_item_boundsKyle Matsuda-4/+3
2023-03-21remove some trait solver helperslcnr-2/+4
2023-01-28Take a LocalDefId in hir::Visitor::visit_fn.Camille GILLOT-5/+5
2023-01-23fix: use LocalDefId instead of HirId in trait resVincenzo Palazzo-1/+2
2022-12-14Ensure no one constructs `AliasTy`s themselvesOli Scherer-1/+1
2022-12-13Combine projection and opaque into aliasMichael Goulet-2/+2
2022-12-13squash OpaqueTy and ProjectionTy into AliasTyMichael Goulet-2/+2
2022-12-13Use ty::OpaqueTy everywhereMichael Goulet-4/+4
2022-12-01Merge commit 'd822110d3b5625b9dc80ccc442e06fc3cc851d76' into clippyupPhilipp Krones-1/+3
2022-11-25Introduce PredicateKind::ClauseSantiago Pastorino-2/+2
2022-10-07Change InferCtxtBuilder from enter to buildCameron Steffen-15/+14
2022-10-07Introduce TypeErrCtxtCameron Steffen-2/+2
2022-09-19remove the `Subst` trait, always use `EarlyBinder`lcnr-1/+0
2022-08-04Add `traits::fully_solve_obligation` that acts like `traits::fully_normalize`Michael Goulet-4/+2
2022-05-10Introduce EarlyBinderJack Huey-2/+2
2021-12-12Revert "Auto merge of #91491 - spastorino:revert-91354, r=oli-obk"Deadbeef-2/+2
2021-12-06Merge commit 'a5d597637dcb78dc73f93561ce474f23d4177c35' into clippyupflip1995-0/+1
2021-12-03Revert "Auto merge of #91354 - fee1-dead:const_env, r=spastorino"Santiago Pastorino-2/+2
2021-11-29Fix toolsDeadbeef-2/+2
2021-11-08Make select_* methods return Vec for TraitEngineDeadbeef-2/+2
2021-10-02Make diangostic item names consistentCameron Steffen-1/+1
2021-08-13move Constness into TraitPredicateDeadbeef-1/+1
2021-07-29Merge commit '0cce3f643bfcbb92d5a1bb71858c9cbaff749d6b' into clippyupflip1995-6/+5
2021-06-03Merge commit '3ae8faff4d46ad92f194c2a4b941c3152a701b31' into clippyupflip1995-1/+1
2021-03-25Merge commit '0e87918536b9833bbc6c683d1f9d51ee2bf03ef1' into clippyupflip1995-3/+4
2021-03-09Do not store attrs in FnKind.Camille GILLOT-1/+1
2021-01-30Merge commit '95c0459217d1661edfa794c8bb122452b92fb485' into clippyupflip1995-7/+2
2021-01-16Review changesJack Huey-2/+2
2020-11-22Thread `Constness` through selectionJonas Schievink-1/+1
2020-10-06Fix toolsMatthew Jasper-4/+11
2020-09-04`ty.kind` -> `ty.kind()` in rustdoc and clippyLeSeulArtichaut-1/+1
2020-07-27introduce PredicateAtomBastian Kauschke-2/+2
2020-07-27this might be unqualified, but at least it's now quantifiedBastian Kauschke-1/+1
2020-07-27clippyBastian Kauschke-6/+5
2020-07-03Use 'tcx for references to AccessLevels wherever possible.Eduard-Mihai Burtescu-2/+2
2020-06-01Call `skip_binder` or `no_bound_vars` before `self_ty`Dylan MacKenzie-1/+1
2020-05-20introduce newtype'd `Predicate<'tcx>`Bastian Kauschke-1/+1
2020-05-20rename `Predicate` to `PredicateKind`, introduce aliasBastian Kauschke-1/+1
2020-04-19Cleanup: future_not_send: use `return_ty` methodPhilipp Hansch-4/+1
2020-04-17add lint futures_not_sendRoland Kuhn-0/+113