Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
limb: Unmerge
usize_from_u32
import from "alloc"
-guarded use
Since commit e88750b ("Define native word size as `constant_time::Word`.") `usize_from_u32()` is unconditionally used in and via global `const`s but was (likely accidentally by means of `rust-analyzer`) merged into a `use` statement that's guarded by `feature = "alloc"`. When compiling this crate without that feature, which happens with `default-features = false`, this fails to compile due to missing the import. Moving the import to the unguarded `use crate::` group solves this.
- Loading branch information