Skip to content

Commit de05999

Browse files
p32blognzlbg
authored andcommitted
Formatting
1 parent 637cfa7 commit de05999

File tree

3 files changed

+130
-130
lines changed

3 files changed

+130
-130
lines changed

src/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,7 @@ mod v16 {
194194
define_ty! { u8x2, u8, u8 }
195195
define_impl! { u8x2, u8, 2, i8x2, x0, x1 }
196196

197-
define_casts!(
198-
(i8x2, i64x2, as_i64x2),
199-
(u8x2, i64x2, as_i64x2)
200-
);
197+
define_casts!((i8x2, i64x2, as_i64x2), (u8x2, i64x2, as_i64x2));
201198
}
202199

203200
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]

src/macros.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ macro_rules! test_arithmetic_ {
485485

486486
#[cfg(test)]
487487
#[macro_export]
488-
macro_rules! test_neg_ {
488+
macro_rules! test_neg_ {
489489
($tn:ident, $zero:expr, $one:expr, $two:expr, $four:expr) => {
490490
{
491491
let z = $tn::splat($zero);
@@ -573,7 +573,7 @@ macro_rules! test_bit_arithmetic_ {
573573

574574
#[cfg(test)]
575575
#[macro_export]
576-
macro_rules! test_ops_si {
576+
macro_rules! test_ops_si {
577577
($($tn:ident),+) => {
578578
$(
579579
test_arithmetic_!($tn, 0, 1, 2, 4);
@@ -585,7 +585,7 @@ macro_rules! test_bit_arithmetic_ {
585585

586586
#[cfg(test)]
587587
#[macro_export]
588-
macro_rules! test_ops_ui {
588+
macro_rules! test_ops_ui {
589589
($($tn:ident),+) => {
590590
$(
591591
test_arithmetic_!($tn, 0, 1, 2, 4);
@@ -596,7 +596,7 @@ macro_rules! test_bit_arithmetic_ {
596596

597597
#[cfg(test)]
598598
#[macro_export]
599-
macro_rules! test_ops_f {
599+
macro_rules! test_ops_f {
600600
($($tn:ident),+) => {
601601
$(
602602
test_arithmetic_!($tn, 0., 1., 2., 4.);

0 commit comments

Comments
 (0)