Closed Osveron closed 6 years ago
I've added few #[cfg(not(feature = "no-std"))] and changed this weird construct in store_scalar_unchecked to just use get_unchecked_mut instead, so it compiles on no-std.
#[cfg(not(feature = "no-std"))]
store_scalar_unchecked
get_unchecked_mut
Thanks!
I've added few
#[cfg(not(feature = "no-std"))]
and changed this weird construct instore_scalar_unchecked
to just useget_unchecked_mut
instead, so it compiles on no-std.