Skip to content

Commit 044d666

Browse files
committed
Rustfmt
1 parent 389a60b commit 044d666

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crossbeam-utils/src/cache_padded.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ use core::ops::{Deref, DerefMut};
6969
// - https://www.mono-project.com/news/2016/09/12/arm64-icache/
7070
//
7171
#[cfg_attr(any(target_arch = "x86_64", target_arch = "aarch64"), repr(align(128)))]
72-
#[cfg_attr(not(any(target_arch = "x86_64", target_arch = "aarch64")), repr(align(64)))]
72+
#[cfg_attr(
73+
not(any(target_arch = "x86_64", target_arch = "aarch64")),
74+
repr(align(64))
75+
)]
7376
pub struct CachePadded<T> {
7477
value: T,
7578
}

0 commit comments

Comments
 (0)