Skip to content

Commit 052e59c

Browse files
committed
Make tidy
1 parent c8c3579 commit 052e59c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/librustc/ty/layout.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ impl<'a, 'gcx, 'tcx> Struct {
578578
attr::ReprInt(_) => false,
579579
attr::ReprExtern => true,
580580
attr::ReprPacked => true,
581-
attr::ReprSimd => bug!("Simd vectors should be represented as a layout::Vector")
581+
attr::ReprSimd => bug!("Simd vectors should be represented as layout::Vector")
582582
}
583583
});
584584
}

src/test/run-pass/multiple-reprs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ pub struct p0f_api_query {
3535
pub magic: u32,
3636
pub addr_type: u8,
3737
pub addr: [u8; 16],
38-
3938
}
39+
4040
pub fn main() {
4141
assert_eq!(size_of::<E1>(), 6);
4242
assert_eq!(size_of::<E2>(), 6);

0 commit comments

Comments
 (0)