Make array ser impls macro better fit rustfmt style

This commit is contained in:
David Tolnay 2019-02-16 15:22:19 -08:00
parent 64c483cf80
commit 344602d27e
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -160,10 +160,12 @@ macro_rules! array_impls {
}
}
array_impls!(01 02 03 04 05 06 07 08 09 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31 32);
array_impls! {
01 02 03 04 05 06 07 08 09 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31 32
}
////////////////////////////////////////////////////////////////////////////////