Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The BaseSplitGenerator was casting fields (which fit in u64) into usize. This doesn't work in 32-bit architectures where usize is 32 bits, like wasm32. Keeping the value at u64 allows it to work in 32-bit architectures.
- Loading branch information