Skip to content

Commit 02b3234

Browse files
committed
Tidy
1 parent 97ce904 commit 02b3234

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustc_mir/interpret/intrinsics.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
248248
} else {
249249
throw_ub_format!(
250250
"Inserting `{}` with size `{}` to a vector element place of size `{}`",
251-
scalar.layout.ty, scalar.layout.size.bytes(), vector[index].layout.size.bytes()
251+
scalar.layout.ty,
252+
scalar.layout.size.bytes(), vector[index].layout.size.bytes()
252253
);
253254
}
254255
self.write_vector(vector, dest)?;

0 commit comments

Comments
 (0)