fix struct_offset!

This commit is contained in:
Intege-rs
2024-11-16 19:21:42 -05:00
parent bf68dfc364
commit 47e88a7739

View File

@@ -90,7 +90,7 @@ impl<T: Debug, const O: usize> Debug for VirtualOffset<T, O> {
pub macro struct_offset {
($offset:literal, $type:ty) => {
$crate::VirtualOffset<$type, $offset>
VirtualOffset<$type, $offset>
}
}