Skip to content

Commit 99485e7

Browse files
committed
Revert "Fix non-x86 builds"
This reverts commit 5c16856.
1 parent 08e2a85 commit 99485e7

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

src/block/default.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,6 @@ impl Block {
1111
pub const ALL: Self = Block(!0);
1212
pub const BITS: usize = core::mem::size_of::<Self>() * 8;
1313

14-
#[inline]
15-
pub fn into_usize_array(self) -> [usize; Self::USIZE_COUNT] {
16-
[self.0]
17-
}
18-
19-
#[inline]
20-
pub const fn from_usize_array(array: [usize; Self::USIZE_COUNT]) -> Self {
21-
Self(array[0])
22-
}
23-
2414
#[inline]
2515
pub const fn is_empty(self) -> bool {
2616
self.0 == Self::NONE.0

0 commit comments

Comments
 (0)