Skip to content

Commit 3951167

Browse files
committed
Remove more redundant alls
1 parent 20ff362 commit 3951167

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

example/alloc_system.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313

1414
// The minimum alignment guaranteed by the architecture. This value is used to
1515
// add fast paths for low alignment values.
16-
#[cfg(all(any(target_arch = "x86",
16+
#[cfg(any(target_arch = "x86",
1717
target_arch = "arm",
1818
target_arch = "mips",
1919
target_arch = "powerpc",
20-
target_arch = "powerpc64")))]
20+
target_arch = "powerpc64"))]
2121
const MIN_ALIGN: usize = 8;
22-
#[cfg(all(any(target_arch = "x86_64",
22+
#[cfg(any(target_arch = "x86_64",
2323
target_arch = "aarch64",
2424
target_arch = "mips64",
2525
target_arch = "s390x",
26-
target_arch = "sparc64")))]
26+
target_arch = "sparc64"))]
2727
const MIN_ALIGN: usize = 16;
2828

2929
pub struct System;

0 commit comments

Comments
 (0)