Skip to content

Commit ef6284f

Browse files
committed
formatting
1 parent 9bd9ba4 commit ef6284f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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)