We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e426d39 commit af22cd6Copy full SHA for af22cd6
1 file changed
library/portable-simd/crates/core_simd/src/vector.rs
@@ -1196,14 +1196,14 @@ impl Sealed for f16 {}
1196
1197
// Safety: f16 is a valid SIMD element type, and is supported by this API
1198
unsafe impl SimdElement for f16 {
1199
- type Mask = id16;
+ type Mask = i16;
1200
}
1201
1202
impl Sealed for f32 {}
1203
1204
// Safety: f32 is a valid SIMD element type, and is supported by this API
1205
unsafe impl SimdElement for f32 {
1206
- type Mask = i32;
+ type Mask = i32
1207
1208
1209
impl Sealed for f64 {}
0 commit comments