Skip to content

Commit cb8fa33

Browse files
committed
tidy
1 parent a5ef2d1 commit cb8fa33

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustc_mir/interpret/memory.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,8 @@ impl<'a, 'mir, 'tcx, M: Machine<'a, 'mir, 'tcx>> Memory<'a, 'mir, 'tcx, M> {
659659
self.check_align(src, src_align)?;
660660
self.check_align(dest, dest_align)?;
661661
if size.bytes() == 0 {
662-
// Nothing to do for ZST, other than checking alignment and non-NULLness which already happened.
662+
// Nothing to do for ZST, other than checking alignment and
663+
// non-NULLness which already happened.
663664
return Ok(());
664665
}
665666
let src = src.to_ptr()?;

0 commit comments

Comments
 (0)