Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
f{32|64}::powi
instead of Typenum::Pow::powi
.
In Rust 1.45 the upgrade to LLVM 10.0 changes the behavior of `f{32|64}::powi` on Windows. This commit changes the `Quantity::powi` implementation to simplify down to `f{32|64}::powi` instead of using `Typenum::Pow::powi` which uses a less precise algorithm. Resolves #192.
- Loading branch information