From bae054af11ef749a027066b7b03d13eb4049c0dc Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Thu, 28 Apr 2022 17:30:25 -0700 Subject: [PATCH] Add stdsimd feature to allow_internal_unstable attribute in feature detect macros (#1303) --- library/stdarch/crates/std_detect/src/detect/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdarch/crates/std_detect/src/detect/macros.rs b/library/stdarch/crates/std_detect/src/detect/macros.rs index fa7189336a7e..7548c97807a5 100644 --- a/library/stdarch/crates/std_detect/src/detect/macros.rs +++ b/library/stdarch/crates/std_detect/src/detect/macros.rs @@ -11,7 +11,7 @@ macro_rules! features { ) => { #[macro_export] $(#[$macro_attrs])* - #[allow_internal_unstable(stdsimd_internal)] + #[allow_internal_unstable(stdsimd_internal, stdsimd)] #[cfg($cfg)] #[doc(cfg($cfg))] macro_rules! $macro_name {