diff options
| author | bors <bors@rust-lang.org> | 2022-05-09 04:47:30 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-05-09 04:47:30 +0000 |
| commit | 8a2fe75d0e6e024aa434e5b9c40adb2567f362b8 (patch) | |
| tree | efdc8580272e7994c4de5ab04f16cc3087e73c64 /src/librustdoc/html/render | |
| parent | db5b365fb0e7aa5f59d80236f520f5afc6e39ff4 (diff) | |
| parent | dac487ae2bf9f0d51b7462e9d311d67f46048643 (diff) | |
| download | rust-8a2fe75d0e6e024aa434e5b9c40adb2567f362b8.tar.gz rust-8a2fe75d0e6e024aa434e5b9c40adb2567f362b8.zip | |
Auto merge of #95960 - jhpratt:remove-rustc_deprecated, r=compiler-errors
Remove `#[rustc_deprecated]` This removes `#[rustc_deprecated]` and introduces diagnostics to help users to the right direction (that being `#[deprecated]`). All uses of `#[rustc_deprecated]` have been converted. CI is expected to fail initially; this requires #95958, which includes converting `stdarch`. I plan on following up in a short while (maybe a bootstrap cycle?) removing the diagnostics, as they're only intended to be short-term.
Diffstat (limited to 'src/librustdoc/html/render')
| -rw-r--r-- | src/librustdoc/html/render/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustdoc/html/render/mod.rs b/src/librustdoc/html/render/mod.rs index 19582481910..c13ae1e431a 100644 --- a/src/librustdoc/html/render/mod.rs +++ b/src/librustdoc/html/render/mod.rs @@ -531,8 +531,8 @@ fn short_item_info( if let Some(depr @ Deprecation { note, since, is_since_rustc_version: _, suggestion: _ }) = item.deprecation(cx.tcx()) { - // We display deprecation messages for #[deprecated] and #[rustc_deprecated] - // but only display the future-deprecation messages for #[rustc_deprecated]. + // We display deprecation messages for #[deprecated], but only display + // the future-deprecation messages for rustc versions. let mut message = if let Some(since) = since { let since = since.as_str(); if !stability::deprecation_in_effect(&depr) { |
