송재욱
104b195ee2
Merge 43c1796e876807ab41c37286ddbbecfa0aa51cde into 05087a303dad9c98768b33c829d398223a649bc6
2026-04-16 23:09:30 +02:00
Daniel Lemire
05087a303d
8.2.5
v8.2.5
2026-04-16 14:39:03 -04:00
Daniel Lemire
b2b1e203ba
removing msys 32-bit
2026-04-16 14:38:27 -04:00
Daniel Lemire
b57ec064ad
Merge pull request #379 from mlippautz/patch-1
...
Replace std::min with ternary operators to avoid <algorithm> dependency
2026-04-16 14:37:13 -04:00
Michael Lippautz
001c04cc8a
Remove <algorithm> include and replace std::min with ternary operators
...
Replaces uses of std::min with ternary operators in ascii_number.h, digit_comparison.h, and float_common.h to remove the dependency on the <algorithm> header in those files.
2026-04-16 17:17:19 +00:00
Michael Lippautz
b063de82c7
Include <algorithm> in float_common.h
...
`fastfloat_strncasecmp` relies on `std::min`.
2026-04-16 09:51:58 +02:00
Daniel Lemire
d7ad33a80e
Merge pull request #377 from BYVoid/fix-bazel-bzlmod
...
Fix Bazel build with bzlmod
2026-03-27 09:37:23 -04:00
Carbo
2027a39ba0
Update MODULE.bazel version to 8.2.4
...
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 14:42:55 +09:00
Carbo
9817d5ddaa
Fix Bazel build with bzlmod by loading cc_library rule
...
With bzlmod, native rules like cc_library are no longer implicitly available
and must be explicitly loaded from rules_cc. Add the rules_cc dependency to
MODULE.bazel and the corresponding load statement to BUILD.bazel.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 14:39:16 +09:00
Daniel Lemire
7124634005
Merge pull request #375 from fastfloat/dependabot/github_actions/github-actions-c571d227b7
...
Bump the github-actions group across 1 directory with 3 updates
2026-03-16 10:02:24 -04:00
dependabot[bot]
419695eba6
Bump the github-actions group across 1 directory with 3 updates
...
Bumps the github-actions group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact ), [actions/setup-node](https://github.com/actions/setup-node ) and [jidicula/clang-format-action](https://github.com/jidicula/clang-format-action ).
Updates `actions/upload-artifact` from 6 to 7
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v6...v7 )
Updates `actions/setup-node` from 6.2.0 to 6.3.0
- [Release notes](https://github.com/actions/setup-node/releases )
- [Commits](6044e13b5d...53b83947a5 )
Updates `jidicula/clang-format-action` from 4.16.0 to 4.17.0
- [Release notes](https://github.com/jidicula/clang-format-action/releases )
- [Commits](6cd220de46...3a18028048 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
- dependency-name: actions/setup-node
dependency-version: 6.3.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-actions
- dependency-name: jidicula/clang-format-action
dependency-version: 4.17.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-actions
...
Signed-off-by: dependabot[bot] <support@github.com>
2026-03-16 00:08:44 +00:00
Daniel Lemire
18e55e48a8
lint
2026-03-10 17:06:04 -04:00
Daniel Lemire
eb9ab42c0a
8.2.4
v8.2.4
2026-03-10 12:10:12 -04:00
Daniel Lemire
50c19fad17
init
2026-03-10 11:53:45 -04:00
Daniel Lemire
3f42ad2272
Merge pull request #374 from kolemannix/bench_inline
...
A few inlines
2026-03-10 11:52:28 -04:00
Daniel Lemire
00fb4f4b1e
Merge pull request #372 from kolemannix/ffc_h_port
...
Mention C under other languages
2026-03-09 16:27:51 -04:00
Koleman Nix
2606bcdf2f
A few inlines
2026-03-07 15:36:09 -05:00
Koleman Nix
b83fdd79ce
consistency
2026-03-07 14:23:07 -05:00
Koleman Nix
a18b614b0e
Mention C under other languages
2026-03-07 14:20:13 -05:00
Daniel Lemire
8514abe2e2
Update README with note for C users
...
Added a note for C users to consider ffc.h for high-performance parsing.
2026-03-05 21:59:09 -05:00
재욱
43c1796e87
refactor: simplify fractional digit count calculation by removing an intermediate variable
2026-02-24 11:24:28 +09:00
재욱
1403169607
Implement digit separator skipping in exponent parsing
2026-02-24 11:00:24 +09:00
재욱
c3b634e24f
Add test cases for digit separators
2026-02-24 11:00:09 +09:00
Daniel Lemire
9f30728ce9
Merge pull request #368 from x1sc0/main
...
fix warning C4702: unreachable code
2026-02-23 17:27:16 -05:00
재욱
a6c87105dc
refactor: simplify leading zero detection
2026-02-08 22:15:17 +09:00
재욱
b9ffbe8dc6
refector: pre-calculate digit separator presence and value
2026-02-08 22:10:34 +09:00
재욱
ad90d9a01d
refactor: simplify prefix skipping conditions
2026-02-08 21:25:00 +09:00
재욱
b50eeab22a
Handle digit separators in exponent and fraction parsing
2026-02-08 18:21:37 +09:00
재욱
587d890fa0
Reformat
2026-02-08 17:12:53 +09:00
재욱
456e4c5eb6
Implement prefix skipping in from_chars_advanced
2026-02-08 17:01:19 +09:00
재욱
4abcd6059b
Implement digit separator skipping in number parsing
2026-02-08 17:00:54 +09:00
재욱
70aa9a81b1
Add options for digit separators and prefix skipping
2026-02-08 17:00:27 +09:00
Xisco Fauli
3c6a64b87d
fix warning C4702: unreachable code
2026-02-06 11:28:34 +01:00
Daniel Lemire
221a4920db
Merge branch 'main' of github.com:fastfloat/fast_float
2026-02-04 12:13:47 -05:00
Daniel Lemire
a110aa1392
adding bug report template
2026-02-04 12:13:25 -05:00
Daniel Lemire
8d9f627710
Merge pull request #366 from 976520/main
...
Add more boundary test cases for double and float parsing
2026-02-04 10:55:44 -05:00
재욱
3e2b5d3dc3
refactor verification calls for double and float limits
2026-02-04 15:36:31 +09:00
재욱
f43d6711bc
Add additional verification cases for double and float limits
2026-02-04 15:27:46 +09:00
Daniel Lemire
01ce95dfe4
v8.2.3
v8.2.3
2026-02-03 11:27:40 -05:00
Daniel Lemire
d5717d4a80
Merge pull request #365 from nyoma-diamond/fix-permissive-flag
...
Fix overzealous build-time `/permissive-` propagating to compile-time (cross-compilation bug)
2026-02-03 11:26:49 -05:00
N'yoma Diamond
707fccb445
compile-time generator expression fixes overzealous /permissive- compiler option usage
2026-02-02 16:44:39 +00:00
Daniel Lemire
36a2b14eed
Merge pull request #361 from fastfloat/dependabot/github_actions/github-actions-c132dce648
...
Bump the github-actions group with 2 updates
2026-02-02 11:19:55 -05:00
dependabot[bot]
95295d1398
Bump the github-actions group with 2 updates
...
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout ) and [actions/setup-node](https://github.com/actions/setup-node ).
Updates `actions/checkout` from 5.0.1 to 6.0.1
- [Release notes](https://github.com/actions/checkout/releases )
- [Commits](https://github.com/actions/checkout/compare/v5.0.1...v6.0.1 )
Updates `actions/setup-node` from 6.1.0 to 6.2.0
- [Release notes](https://github.com/actions/setup-node/releases )
- [Commits](395ad32622...6044e13b5d )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.1
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
- dependency-name: actions/setup-node
dependency-version: 6.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-actions
...
Signed-off-by: dependabot[bot] <support@github.com>
2026-02-02 00:10:32 +00:00
Daniel Lemire
c5256521ae
Merge pull request #363 from pitrou/patch-1
...
Clarify behavior for underflow
2026-01-28 13:53:54 -05:00
Antoine Pitrou
cb299bdecc
Clarify behavior for underflow
...
In https://github.com/fastfloat/fast_float/pull/189 the behavior on underflow was changed to better match the standard's recommendations, but the README does not mention underflow explicitly.
2026-01-28 10:55:48 +01:00
Daniel Lemire
2e4ed7d6fd
Merge pull request #362 from sleepingeight/surya/fix-opt-cmp
...
fix early return error in fastfloat_strncasecmp
2026-01-21 10:19:49 -05:00
sleepingieght
4fa83ccff4
fix early return error in fastfloat_strncasecmp
2026-01-21 19:21:06 +05:30
Daniel Lemire
71ab1cce81
Fix error message to display input instead of result
2026-01-19 20:36:29 -05:00
Daniel Lemire
64a68590fd
Clarify std::from_chars conversion method
...
Updated explanation of `std::from_chars` conversion checks.
2026-01-18 19:05:51 -05:00
Daniel Lemire
cffb71db98
Merge pull request #344 from fastfloat/dependabot/github_actions/github-actions-397fd93db7
...
Bump the github-actions group across 1 directory with 4 updates
2026-01-18 19:00:04 -05:00