diff options
| author | 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com> | 2024-11-23 20:50:16 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-23 20:50:16 +0800 |
| commit | f5cfb900827e16e15d3abda7e416aac4f930546b (patch) | |
| tree | 25025d31488f20111ddc264204865055a553ae0d /compiler | |
| parent | ae4fdf1445e6808a5268dd6590858a4713d62085 (diff) | |
| parent | d7303194b971eb4bbe1929a05efebfb26656a91f (diff) | |
| download | rust-f5cfb900827e16e15d3abda7e416aac4f930546b.tar.gz rust-f5cfb900827e16e15d3abda7e416aac4f930546b.zip | |
Rollup merge of #133374 - RalfJung:abi_unsupported_vector_types, r=jieyouxu
show abi_unsupported_vector_types lint in future breakage reports The lint is now riding the train to 1.84. Given that crater found no case of this lint triggering at all, IMO it's fine to make it "report in deps" already for 1.85. Part of https://github.com/rust-lang/rust/issues/116558.
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/rustc_lint_defs/src/builtin.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_lint_defs/src/builtin.rs b/compiler/rustc_lint_defs/src/builtin.rs index 9036741e078..3b406c7e161 100644 --- a/compiler/rustc_lint_defs/src/builtin.rs +++ b/compiler/rustc_lint_defs/src/builtin.rs @@ -5173,7 +5173,7 @@ declare_lint! { Warn, "this function call or definition uses a vector type which is not enabled", @future_incompatible = FutureIncompatibleInfo { - reason: FutureIncompatibilityReason::FutureReleaseErrorDontReportInDeps, + reason: FutureIncompatibilityReason::FutureReleaseErrorReportInDeps, reference: "issue #116558 <https://github.com/rust-lang/rust/issues/116558>", }; } |
