about summary refs log tree commit diff
path: root/library/std/src/lib.rs
diff options
context:
space:
mode:
authorJames Dietz <jamesthespeedy@gmail.com>2023-06-16 14:00:30 -0400
committerJames Dietz <jamesthespeedy@gmail.com>2023-07-24 17:56:38 -0400
commitdb4a1534402a163f9296347d31796f070ae7c4e1 (patch)
tree6d0036b58a4605bda99bc93612f4bcc627eff5fe /library/std/src/lib.rs
parentfe0ef9a689d6298d0aa58dc3e491fc0066132fa7 (diff)
downloadrust-db4a1534402a163f9296347d31796f070ae7c4e1.tar.gz
rust-db4a1534402a163f9296347d31796f070ae7c4e1.zip
remove additional [allow(unused_unsafe)]
Diffstat (limited to 'library/std/src/lib.rs')
-rw-r--r--library/std/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs
index 5bf66850f03..4cd251d0ac2 100644
--- a/library/std/src/lib.rs
+++ b/library/std/src/lib.rs
@@ -542,7 +542,7 @@ pub mod time;
 // Pull in `std_float` crate  into std. The contents of
 // `std_float` are in a different repository: rust-lang/portable-simd.
 #[path = "../../portable-simd/crates/std_float/src/lib.rs"]
-#[allow(missing_debug_implementations, dead_code, unsafe_op_in_unsafe_fn, unused_unsafe)]
+#[allow(missing_debug_implementations, dead_code, unsafe_op_in_unsafe_fn)]
 #[allow(rustdoc::bare_urls)]
 #[unstable(feature = "portable_simd", issue = "86656")]
 mod std_float;