This commit adds usize to primitive_transferable_type macro
so that it is AbiTransferable. There are a number of pointer types
that are aliases of usize, since their size is dependent on
processor word size e.g. UINT_PTR.
This commit is contained in:
Russ Cam 2021-03-07 16:44:43 +10:00
Родитель b6e59c242e
Коммит ac06d6653d
2 изменённых файлов: 3 добавлений и 0 удалений

2
.gitignore поставляемый
Просмотреть файл

@ -13,3 +13,5 @@ Cargo.lock
.DS_Store
.vscode
.idea

Просмотреть файл

@ -77,6 +77,7 @@ primitive_transferable_type! {
u64,
f32,
f64,
usize,
crate::sys::GUID
}