Skip to content

Commit c3cc892

Browse files
Fix every invocation of rustfmt::skip
1 parent c7359ab commit c3cc892

File tree

21 files changed

+36
-36
lines changed

21 files changed

+36
-36
lines changed

examples/matrix_inverse/src/scalar.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Scalar implementation
2-
#![rustfmt::skip]
2+
#[rustfmt::skip]
33
use crate::*;
44

55
#[allow(clippy::too_many_lines)]

src/api/cast/v128.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! `FromCast` and `IntoCast` implementations for portable 128-bit wide vectors
2-
#![rustfmt::skip]
2+
#[rustfmt::skip]
33

44
use crate::*;
55

src/api/cast/v16.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! `FromCast` and `IntoCast` implementations for portable 16-bit wide vectors
2-
#![rustfmt::skip]
2+
#[rustfmt::skip]
33

44
use crate::*;
55

src/api/cast/v256.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! `FromCast` and `IntoCast` implementations for portable 256-bit wide vectors
2-
#![rustfmt::skip]
2+
#[rustfmt::skip]
33

44
use crate::*;
55

src/api/cast/v32.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! `FromCast` and `IntoCast` implementations for portable 32-bit wide vectors
2-
#![rustfmt::skip]
2+
#[rustfmt::skip]
33

44
use crate::*;
55

src/api/cast/v512.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! `FromCast` and `IntoCast` implementations for portable 512-bit wide vectors
2-
#![rustfmt::skip]
2+
#[rustfmt::skip]
33

44
use crate::*;
55

src/api/cast/v64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! `FromCast` and `IntoCast` implementations for portable 64-bit wide vectors
2-
#![rustfmt::skip]
2+
#[rustfmt::skip]
33

44
use crate::*;
55

src/api/into_bits/arch_specific.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! `FromBits` and `IntoBits` between portable vector types and the
22
//! architecture-specific vector types.
3-
#![rustfmt::skip]
3+
#[rustfmt::skip]
44

55
// FIXME: MIPS FromBits/IntoBits
66

src/api/into_bits/v128.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! `FromBits` and `IntoBits` implementations for portable 128-bit wide vectors
2-
#![rustfmt::skip]
2+
#[rustfmt::skip]
33

44
#[allow(unused)] // wasm_bindgen_test
55
use crate::*;

src/api/into_bits/v16.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! `FromBits` and `IntoBits` implementations for portable 16-bit wide vectors
2-
#![rustfmt::skip]
2+
#[rustfmt::skip]
33

44
#[allow(unused)] // wasm_bindgen_test
55
use crate::*;

0 commit comments

Comments
 (0)