Skip to content

Commit

Permalink
Fix mask alias
Browse files Browse the repository at this point in the history
  • Loading branch information
calebzulawski committed Jan 9, 2022
1 parent 09fa72a commit 65cb2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core_simd/src/masks.rs
Expand Up @@ -516,7 +516,7 @@ pub type mask16x8 = Mask<i16, 8>;
pub type mask16x16 = Mask<i16, 16>;

/// Vector of 32 16-bit masks
pub type mask16x32 = Mask<i32, 32>;
pub type mask16x32 = Mask<i16, 32>;

/// Vector of two 32-bit masks
pub type mask32x2 = Mask<i32, 2>;
Expand Down

0 comments on commit 65cb2c9

Please sign in to comment.