Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixes ptr to cstring warnings[backport] (#20848) | ringabout | 2022-11-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix =#13790 ptr char (+friends) should not implicitly convert to cstring * Apply suggestions from code review * first round; compiles on windows * nimPreviewSlimSystem * conversion is unsafe, cast needed * fixes more tests * fixes asyncnet * another try another error * last one * true * one more * why bugs didn't show at once * add `nimPreviewCstringConversion` switch * typo * fixes ptr to cstring warnings[backport] * add fixes Co-authored-by: xflywind <43030857+xflywind@users.noreply.github.com> | ||||
* | fixes #18400 (#18402) | Andreas Rumpf | 2021-06-30 | 1 | -0/+6 |
| | |||||
* | remove unused imports from tests | narimiran | 2019-11-06 | 1 | -1/+1 |
| | |||||
* | require errormsg to be specified before file. | Arne Döring | 2018-12-11 | 1 | -2/+1 |
| | |||||
* | Fix for isssue in parseBiggestFloat #7060 (#7061) | cooldome | 2018-01-11 | 1 | -0/+6 |
| | |||||
* | make tests green again; closes #5861 | Andreas Rumpf | 2017-10-10 | 1 | -1/+1 |
| | |||||
* | made test green for Windows | Araq | 2016-09-30 | 1 | -2/+4 |
| | |||||
* | fixes issue 4212 && add test for various valid zero floats. | Parashurama | 2016-05-25 | 1 | -13/+21 |
| | |||||
* | fixes #4212 | Andreas Rumpf | 2016-05-25 | 1 | -1/+1 |
| | |||||
* | Fixed parsing of float literals. | Reimer Behrends | 2014-05-23 | 1 | -0/+42 |
Float literals were not parsed properly when their fractional part exceeded 53 significant bits. This affected in particular math.PI and math.E. Rather than reinventing the wheel, this patch reuses C's strtod() implementation, which already does the heavy lifting with respect to correctness, though some caution is necessary to keep float parsing locale-independent. |