fix 32 bit build

This commit is contained in:
nora 2022-04-04 20:10:24 +02:00
parent 5c05378a1e
commit 810229439a
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "stuff" name = "stuff"
version = "0.1.0" version = "0.1.1"
edition = "2021" edition = "2021"
description = "Stuffing things into pointers." description = "Stuffing things into pointers."
readme = "./README.md" readme = "./README.md"

View file

@ -147,7 +147,7 @@ impl_backend_2_tuple!(impl for u128 { (*mut T, u64), 64 });
impl_backend_2_tuple!(impl for u64 { (*mut T, u32), 32 }); impl_backend_2_tuple!(impl for u64 { (*mut T, u32), 32 });
#[cfg(target_pointer_width = "32")] #[cfg(target_pointer_width = "32")]
impl_backend_3_tuple!(impl 128 u64 { (*mut T, u32, u64), 32, 64 }); impl_backend_3_tuple!(impl for u128 { (*mut T, u32, u64), 32, 64 });
#[cfg(target_pointer_width = "16")] #[cfg(target_pointer_width = "16")]
impl_backend_3_tuple!(impl for u64 { (*mut T, u16, u32), 16, 32 }); impl_backend_3_tuple!(impl for u64 { (*mut T, u16, u32), 16, 32 });