mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-21 04:03:11 +00:00
Auto merge of #10400 - calebcartwright:rustfmt-cleanup, r=Jarcho
chore: remove unneeded rustfmt skip --- The associated rustfmt bug that originally necessitated these skips was resolved a while back, so these are no longer necessary changelog: none
This commit is contained in:
commit
3d193fa17a
@ -155,7 +155,6 @@ struct TupleStructReprC(i32, [usize; 0]);
|
||||
|
||||
type NamedTuple = (i32, [usize; 0]);
|
||||
|
||||
#[rustfmt::skip] // [rustfmt#4995](https://github.com/rust-lang/rustfmt/issues/4995)
|
||||
struct ConstParamZeroDefault<const N: usize = 0> {
|
||||
field: i32,
|
||||
last: [usize; N],
|
||||
@ -166,7 +165,6 @@ struct ConstParamNoDefault<const N: usize> {
|
||||
last: [usize; N],
|
||||
}
|
||||
|
||||
#[rustfmt::skip]
|
||||
struct ConstParamNonZeroDefault<const N: usize = 1> {
|
||||
field: i32,
|
||||
last: [usize; N],
|
||||
|
Loading…
Reference in New Issue
Block a user