Skip to content

Commit

Permalink
chore: bump fast_float snaapshot to 5.2.0 (#5605)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckerr committed Jun 11, 2023
1 parent 802619e commit 87f254a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third-party/fast_float
Submodule fast_float updated 65 files
+38 −18 .github/workflows/alpine.yml
+1 −9 .github/workflows/amalgamate-ubuntu20.yml
+41 −0 .github/workflows/on-release.yml
+30 −0 .github/workflows/s390x.yml
+0 −35 .github/workflows/ubuntu18.yml
+1 −1 .github/workflows/ubuntu20-cxx20.yml
+16 −0 .github/workflows/ubuntu20-fastmath.yml
+0 −8 .github/workflows/ubuntu20.yml
+25 −0 .github/workflows/ubuntu22-clang.yml
+23 −0 .github/workflows/ubuntu22-gcc12.yml
+16 −0 .github/workflows/ubuntu22.yml
+15 −6 .github/workflows/vs17-arm-ci.yml
+27 −13 .github/workflows/vs17-ci.yml
+8 −7 .github/workflows/vs17-clang-ci.yml
+17 −8 .github/workflows/vs17-cxx20.yml
+19 −0 .gitignore
+1 −1 CMakeLists.txt
+3 −0 CONTRIBUTORS
+23 −0 LICENSE-BOOST
+70 −20 README.md
+8 −0 fuzz/build.sh
+34 −0 fuzz/from_chars.cc
+234 −57 include/fast_float/ascii_number.h
+91 −64 include/fast_float/bigint.h
+40 −0 include/fast_float/constexpr_feature_detect.h
+11 −16 include/fast_float/decimal_to_binary.h
+67 −48 include/fast_float/digit_comparison.h
+10 −31 include/fast_float/fast_float.h
+657 −656 include/fast_float/fast_table.h
+339 −98 include/fast_float/float_common.h
+145 −26 include/fast_float/parse_number.h
+0 −360 include/fast_float/simple_decimal_conversion.h
+22 −13 script/amalgamate.py
+75 −0 script/mushtak_lemire.py
+15 −4 tests/CMakeLists.txt
+464 −112 tests/basictest.cpp
+5 −0 tests/bloat_analysis/CMakeLists.txt
+9 −0 tests/bloat_analysis/a1.cpp
+9 −0 tests/bloat_analysis/a10.cpp
+9 −0 tests/bloat_analysis/a2.cpp
+9 −0 tests/bloat_analysis/a3.cpp
+9 −0 tests/bloat_analysis/a4.cpp
+9 −0 tests/bloat_analysis/a5.cpp
+9 −0 tests/bloat_analysis/a6.cpp
+9 −0 tests/bloat_analysis/a7.cpp
+9 −0 tests/bloat_analysis/a8.cpp
+9 −0 tests/bloat_analysis/a9.cpp
+19 −0 tests/bloat_analysis/main.cpp
+13 −0 tests/bloat_analysis/main_ref.cpp
+1 −1 tests/example_comma_test.cpp
+21 −0 tests/example_test.cpp
+5 −2 tests/exhaustive32.cpp
+3 −3 tests/exhaustive32_64.cpp
+8 −5 tests/exhaustive32_midpoint.cpp
+5 −3 tests/installation_tests/find/CMakeLists.txt
+5 −2 tests/long_exhaustive32.cpp
+5 −2 tests/long_exhaustive32_64.cpp
+8 −4 tests/long_random64.cpp
+2 −2 tests/long_test.cpp
+1 −1 tests/powersoffive_hardround.cpp
+8 −4 tests/random64.cpp
+8 −3 tests/random_string.cpp
+123 −0 tests/rcppfastfloat_test.cpp
+8 −3 tests/short_random_string.cpp
+5 −4 tests/string_test.cpp

0 comments on commit 87f254a

Please sign in to comment.