diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-11-15 01:40:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-15 01:40:44 +0100 |
| commit | 2c29b05fb24095b0bc2e792ffed3df7496cc2a59 (patch) | |
| tree | 9d888bb5c6cd877858063b5d1c4dd888dee7918f /library/std/src | |
| parent | 0a3cb1ed8138900e8697d42988ee41250c3d69ad (diff) | |
| parent | 29fe28fcfc01f6b850744cc918dbc07a82978755 (diff) | |
| download | rust-2c29b05fb24095b0bc2e792ffed3df7496cc2a59.tar.gz rust-2c29b05fb24095b0bc2e792ffed3df7496cc2a59.zip | |
Rollup merge of #104383 - WaffleLapkin:rustc_undiagnostic_item, r=compiler-errors
Remove unused symbols and diagnostic items As the title suggests, this removes unused symbols from `sym::` and `#[rustc_diagnostic_item]` annotations that weren't mentioned anywhere. Originally I tried to use grep, to find symbols and item names that are never mentioned via `sym::name`, however this produced a lot of false positives (?), for example clippy matching on `Symbol::as_str` or macros "implicitly" adding `sym::`. I ended up fixing all these false positives (?) by hand, but tbh I'm not sure if it was worth it...
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/net/ip_addr.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/library/std/src/net/ip_addr.rs b/library/std/src/net/ip_addr.rs index 4f14fc28038..5453853e138 100644 --- a/library/std/src/net/ip_addr.rs +++ b/library/std/src/net/ip_addr.rs @@ -73,7 +73,6 @@ pub enum IpAddr { /// assert!("0xcb.0x0.0x71.0x00".parse::<Ipv4Addr>().is_err()); // all octets are in hex /// ``` #[derive(Copy, Clone, PartialEq, Eq, Hash)] -#[cfg_attr(not(test), rustc_diagnostic_item = "Ipv4Addr")] #[stable(feature = "rust1", since = "1.0.0")] pub struct Ipv4Addr { octets: [u8; 4], @@ -156,7 +155,6 @@ pub struct Ipv4Addr { /// assert_eq!(localhost.is_loopback(), true); /// ``` #[derive(Copy, Clone, PartialEq, Eq, Hash)] -#[cfg_attr(not(test), rustc_diagnostic_item = "Ipv6Addr")] #[stable(feature = "rust1", since = "1.0.0")] pub struct Ipv6Addr { octets: [u8; 16], |
