Issue 3223: reformat via cargo fmt

This commit is contained in:
Alexander McLin
2026-04-08 19:39:48 -04:00
parent fbc5345c9a
commit 091af28368
2 changed files with 70 additions and 70 deletions

View File

@@ -280,7 +280,6 @@ impl StructImpl {
T: Copy + TryInto<i64> + MightNotFitInFixnum,
Integer: From<T>,
{
let n = unsafe { read_primitive::<T>(ptr, layout)? };
Ok(Value::Number(fixnum!(Number, n, arena)))
}

View File

@@ -288,7 +288,8 @@ impl ReservedHeapSection {
unsafe { ptr::write_bytes(self.heap_ptr.add(zero_region_idx), 0u8, align_offset) };
cells_written = if align_offset == 1 {
unsafe { ptr::write_bytes(
unsafe {
ptr::write_bytes(
self.heap_ptr.add(zero_region_idx + 1),
0u8,
size_of::<HeapCellValue>(),