Skip to content

Commit 5eb06d0

Browse files
JohnTitortopecongiro
authored andcommitted
Use issue = "none" instead of "0" (#3977)
1 parent 03625aa commit 5eb06d0

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

tests/source/cfg_if/detect/arch/aarch64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ macro_rules! is_aarch64_feature_detected {
7979
#[doc(hidden)]
8080
#[allow(non_camel_case_types)]
8181
#[repr(u8)]
82-
#[unstable(feature = "stdsimd_internal", issue = "0")]
82+
#[unstable(feature = "stdsimd_internal", issue = "none")]
8383
pub enum Feature {
8484
/// ARM Advanced SIMD (ASIMD)
8585
asimd,

tests/source/cfg_if/detect/arch/arm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ macro_rules! is_arm_feature_detected {
3030
#[doc(hidden)]
3131
#[allow(non_camel_case_types)]
3232
#[repr(u8)]
33-
#[unstable(feature = "stdsimd_internal", issue = "0")]
33+
#[unstable(feature = "stdsimd_internal", issue = "none")]
3434
pub enum Feature {
3535
/// ARM Advanced SIMD (NEON) - Aarch32
3636
neon,

tests/source/cfg_if/detect/arch/mips.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ macro_rules! is_mips_feature_detected {
2222
#[doc(hidden)]
2323
#[allow(non_camel_case_types)]
2424
#[repr(u8)]
25-
#[unstable(feature = "stdsimd_internal", issue = "0")]
25+
#[unstable(feature = "stdsimd_internal", issue = "none")]
2626
pub enum Feature {
2727
/// MIPS SIMD Architecture (MSA)
2828
msa,

tests/source/cfg_if/detect/arch/mips64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ macro_rules! is_mips64_feature_detected {
2222
#[doc(hidden)]
2323
#[allow(non_camel_case_types)]
2424
#[repr(u8)]
25-
#[unstable(feature = "stdsimd_internal", issue = "0")]
25+
#[unstable(feature = "stdsimd_internal", issue = "none")]
2626
pub enum Feature {
2727
/// MIPS SIMD Architecture (MSA)
2828
msa,

tests/source/cfg_if/detect/arch/powerpc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ macro_rules! is_powerpc_feature_detected {
3131
#[doc(hidden)]
3232
#[allow(non_camel_case_types)]
3333
#[repr(u8)]
34-
#[unstable(feature = "stdsimd_internal", issue = "0")]
34+
#[unstable(feature = "stdsimd_internal", issue = "none")]
3535
pub enum Feature {
3636
/// Altivec
3737
altivec,

tests/source/cfg_if/detect/arch/powerpc64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ macro_rules! is_powerpc64_feature_detected {
3131
#[doc(hidden)]
3232
#[allow(non_camel_case_types)]
3333
#[repr(u8)]
34-
#[unstable(feature = "stdsimd_internal", issue = "0")]
34+
#[unstable(feature = "stdsimd_internal", issue = "none")]
3535
pub enum Feature {
3636
/// Altivec
3737
altivec,

tests/source/cfg_if/detect/arch/x86.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ macro_rules! is_x86_feature_detected {
259259
#[allow(non_camel_case_types)]
260260
#[repr(u8)]
261261
#[doc(hidden)]
262-
#[unstable(feature = "stdsimd_internal", issue = "0")]
262+
#[unstable(feature = "stdsimd_internal", issue = "none")]
263263
pub enum Feature {
264264
/// AES (Advanced Encryption Standard New Instructions AES-NI)
265265
aes,

tests/target/cfg_if/detect/arch/aarch64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ macro_rules! is_aarch64_feature_detected {
7171
#[doc(hidden)]
7272
#[allow(non_camel_case_types)]
7373
#[repr(u8)]
74-
#[unstable(feature = "stdsimd_internal", issue = "0")]
74+
#[unstable(feature = "stdsimd_internal", issue = "none")]
7575
pub enum Feature {
7676
/// ARM Advanced SIMD (ASIMD)
7777
asimd,

tests/target/cfg_if/detect/arch/arm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ macro_rules! is_arm_feature_detected {
3838
#[doc(hidden)]
3939
#[allow(non_camel_case_types)]
4040
#[repr(u8)]
41-
#[unstable(feature = "stdsimd_internal", issue = "0")]
41+
#[unstable(feature = "stdsimd_internal", issue = "none")]
4242
pub enum Feature {
4343
/// ARM Advanced SIMD (NEON) - Aarch32
4444
neon,

tests/target/cfg_if/detect/arch/mips.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ macro_rules! is_mips_feature_detected {
2323
#[doc(hidden)]
2424
#[allow(non_camel_case_types)]
2525
#[repr(u8)]
26-
#[unstable(feature = "stdsimd_internal", issue = "0")]
26+
#[unstable(feature = "stdsimd_internal", issue = "none")]
2727
pub enum Feature {
2828
/// MIPS SIMD Architecture (MSA)
2929
msa,

tests/target/cfg_if/detect/arch/mips64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ macro_rules! is_mips64_feature_detected {
2323
#[doc(hidden)]
2424
#[allow(non_camel_case_types)]
2525
#[repr(u8)]
26-
#[unstable(feature = "stdsimd_internal", issue = "0")]
26+
#[unstable(feature = "stdsimd_internal", issue = "none")]
2727
pub enum Feature {
2828
/// MIPS SIMD Architecture (MSA)
2929
msa,

tests/target/cfg_if/detect/arch/powerpc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ macro_rules! is_powerpc_feature_detected {
3131
#[doc(hidden)]
3232
#[allow(non_camel_case_types)]
3333
#[repr(u8)]
34-
#[unstable(feature = "stdsimd_internal", issue = "0")]
34+
#[unstable(feature = "stdsimd_internal", issue = "none")]
3535
pub enum Feature {
3636
/// Altivec
3737
altivec,

tests/target/cfg_if/detect/arch/powerpc64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ macro_rules! is_powerpc64_feature_detected {
3131
#[doc(hidden)]
3232
#[allow(non_camel_case_types)]
3333
#[repr(u8)]
34-
#[unstable(feature = "stdsimd_internal", issue = "0")]
34+
#[unstable(feature = "stdsimd_internal", issue = "none")]
3535
pub enum Feature {
3636
/// Altivec
3737
altivec,

tests/target/cfg_if/detect/arch/x86.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ macro_rules! is_x86_feature_detected {
244244
#[allow(non_camel_case_types)]
245245
#[repr(u8)]
246246
#[doc(hidden)]
247-
#[unstable(feature = "stdsimd_internal", issue = "0")]
247+
#[unstable(feature = "stdsimd_internal", issue = "none")]
248248
pub enum Feature {
249249
/// AES (Advanced Encryption Standard New Instructions AES-NI)
250250
aes,

0 commit comments

Comments
 (0)