about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-08-26 12:32:10 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-08-26 12:32:10 +0000
commitd08b2a50a3a06edd6c2f412a4ffbeaec53507d2f (patch)
tree96f72ba32ec61d3761cc4174f342bfe8bd9871c9
parent29392c091b8c22a42ff5e8074d164c28e1122113 (diff)
downloadrust-d08b2a50a3a06edd6c2f412a4ffbeaec53507d2f.tar.gz
rust-d08b2a50a3a06edd6c2f412a4ffbeaec53507d2f.zip
Allow internal_features lint
-rw-r--r--crates/core_simd/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/core_simd/src/lib.rs b/crates/core_simd/src/lib.rs
index fde406bda70..2d68e4cce85 100644
--- a/crates/core_simd/src/lib.rs
+++ b/crates/core_simd/src/lib.rs
@@ -18,6 +18,7 @@
 #![cfg_attr(feature = "generic_const_exprs", allow(incomplete_features))]
 #![warn(missing_docs, clippy::missing_inline_in_public_items)] // basically all items, really
 #![deny(unsafe_op_in_unsafe_fn, clippy::undocumented_unsafe_blocks)]
+#![allow(internal_features)]
 #![unstable(feature = "portable_simd", issue = "86656")]
 //! Portable SIMD module.