Skip to content

Commit 1728e83

Browse files
committed
Format code within rustc_lint/src/types.rs.
1 parent fa6bf1f commit 1728e83

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/rustc_lint/src/types.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1619,7 +1619,8 @@ impl ImproperCTypesDefinitions {
16191619
) {
16201620
let adt_def = cx.tcx.adt_def(item.owner_id.to_def_id());
16211621
if adt_def.repr().c()
1622-
&& !adt_def.repr().packed() && cx.tcx.sess.target.os == "aix"
1622+
&& !adt_def.repr().packed()
1623+
&& cx.tcx.sess.target.os == "aix"
16231624
&& !adt_def.all_fields().next().is_none()
16241625
{
16251626
let struct_variant_data = item.expect_struct().0;

0 commit comments

Comments
 (0)