Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix invalid bitSize in strconv.ParseFloat (#40753)
The bitSize argument in strconv.ParseFloat should be either 32 or 64. Any value other than 32 will default to 64 in the current implementation, though this behavior is undocumented, making it undefined. See https://cs.opensource.google/go/go/+/refs/tags/go1.23.0:src/strconv/atof.go;l=704-708.
- Loading branch information