From aaba990dcfccf360833183077d7ca7e605b4673c 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) --- crates/std_detect/src/detect/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/std_detect/src/detect/macros.rs b/crates/std_detect/src/detect/macros.rs index fa7189336a7e4..7548c97807a5d 100644 --- a/crates/std_detect/src/detect/macros.rs +++ b/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 {