Skip to content

Commit

Permalink
Remove the assertion due to MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
james7132 committed Mar 18, 2024
1 parent 069291c commit 9c1ae24
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/block/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,3 @@ pub use self::avx2::*;
mod wasm32;
#[cfg(target_arch = "wasm32")]
pub use self::wasm32::*;

const _ASSERTION: () = {
if core::mem::size_of::<Block>() % core::mem::size_of::<usize>() != 0 {
panic!("vector is not a multiple size of usize");
}
};

0 comments on commit 9c1ae24

Please sign in to comment.