summary refs log tree commit diff
path: root/src/liballoc/string.rs
diff options
context:
space:
mode:
authorPhilipp Hansch <dev@phansch.net>2020-04-22 07:47:31 +0200
committerPhilipp Hansch <dev@phansch.net>2020-04-22 07:57:56 +0200
commit23b9f46fff4453fb90611c2fb554e004f1cec096 (patch)
tree4b8df569f90c5be69d0f10e84686489faa4c3500 /src/liballoc/string.rs
parent8ce3f840ae9b735a66531996c32330f24b877cb0 (diff)
downloadrust-23b9f46fff4453fb90611c2fb554e004f1cec096.tar.gz
rust-23b9f46fff4453fb90611c2fb554e004f1cec096.zip
More diagnostic items for Clippy usage
This adds a couple of more diagnostic items to be used in Clippy.
I chose these particular ones because they were the types which we seem
to check for the most in Clippy. I'm not sure if the
`cfg_attr(not(test))` is needed, but it was also used for `Vec` and a
few other types.
Diffstat (limited to 'src/liballoc/string.rs')
-rw-r--r--src/liballoc/string.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liballoc/string.rs b/src/liballoc/string.rs
index 80fa8139915..f3fe1adebb1 100644
--- a/src/liballoc/string.rs
+++ b/src/liballoc/string.rs
@@ -278,6 +278,7 @@ use crate::vec::Vec;
 /// [`Deref`]: ../../std/ops/trait.Deref.html
 /// [`as_str()`]: struct.String.html#method.as_str
 #[derive(PartialOrd, Eq, Ord)]
+#[cfg_attr(not(test), rustc_diagnostic_item = "string_type")]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct String {
     vec: Vec<u8>,