Skip to content

Commit

Permalink
Fix cfg on wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
james7132 committed Mar 22, 2024
1 parent 9ee0278 commit ada255f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/block/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub use self::avx2::*;

#[cfg(all(target_family = "wasm", target_feature = "simd128"))]
mod wasm;
#[cfg(all(target_arch = "wasm", target_feature = "simd128"))]
#[cfg(all(target_family = "wasm", target_feature = "simd128"))]
pub use self::wasm::*;

impl Block {
Expand Down

0 comments on commit ada255f

Please sign in to comment.