File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 24
24
- aarch64-unknown-linux-gnu
25
25
- arm-unknown-linux-gnueabi
26
26
- armv7-unknown-linux-gnueabihf
27
+ # NOTE: Required for issue #218
28
+ - i586-unknown-linux-gnu
27
29
- i686-unknown-linux-gnu
28
30
- i686-unknown-linux-musl
29
31
# NOTE: This fails on cross v0.2.1, which is unusual since
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
31
31
32
32
- Patch doctests with TODOs in dependencies (#222).
33
33
- CI with OSS-Fuzz for the deprecated `actions/upload-artifact@v3` (#221).
34
+ - Float parsing on `i586` targets (#219).
34
35
- Bug where the `radix` feature wasn't enabling `power-of-two` in `lexical-core` or `lexical` (#204).
35
36
- Fixed performance issues due to a lack of inlining on the Eisel-Lemire algorithm (#210).
36
37
- Issue with parsing non-decimal exponent radixes when using a decimal mantissa radix for floating-point numbers (#212).
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ impl Number<'_> {
74
74
// function takes care of setting the precision on architectures which
75
75
// require setting it by changing the global state (like the control word of the
76
76
// x87 FPU).
77
- let _cw: ( ) = set_precision :: < F > ( ) ;
77
+ let _cw = set_precision :: < F > ( ) ;
78
78
79
79
if self . is_fast_path :: < F , FORMAT > ( ) {
80
80
let radix = format. radix ( ) ;
You can’t perform that action at this time.
0 commit comments