Skip to content
This repository was archived by the owner on Jun 8, 2021. It is now read-only.

Commit 4aff48a

Browse files
Update boxed.rs
Accidentally lost a comma in Boxed struct '_dummy: PhantomData,'.
1 parent 963dbda commit 4aff48a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/boxed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ impl<T: 'static, MM: BoxedMemoryManager<T>> FromGlibPtrFull<*const T> for Boxed<
473473
let ptr = MM::copy(ptr);
474474
Boxed {
475475
inner: AnyBox::Native(Box::from_raw(ptr)),
476-
_dummy: PhantomData
476+
_dummy: PhantomData,
477477
}
478478
}
479479
}

0 commit comments

Comments
 (0)