AdamNiederer / faster

SIMD for humans
Mozilla Public License 2.0
1.56k stars 51 forks source link

fix no-std compilation, use get_unchecked_mut insted of ptr::write #19

Closed Osveron closed 6 years ago

Osveron commented 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.

AdamNiederer commented 6 years ago

Thanks!