diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2024-08-07 10:37:13 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2024-08-07 11:17:07 +0300 |
commit | 68416d4bbdbe0998ef2b88ddb20ea2d605824de3 (patch) | |
tree | a43692ab33250971dede78cb11a2cfdc80dba84a | |
parent | dacef943277fa7047bdfbbe942c90bcebdbfe791 (diff) | |
download | ydb-68416d4bbdbe0998ef2b88ddb20ea2d605824de3.tar.gz |
Update contrib/restricted/fast_float to 6.1.3
66dbd7831d117fa7cd10099442adf21f4d3e4694
-rw-r--r-- | contrib/restricted/fast_float/README.md | 2 | ||||
-rw-r--r-- | contrib/restricted/fast_float/include/fast_float/ascii_number.h | 2 | ||||
-rw-r--r-- | contrib/restricted/fast_float/ya.make | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/contrib/restricted/fast_float/README.md b/contrib/restricted/fast_float/README.md index 98da296fee..fdc3dc7913 100644 --- a/contrib/restricted/fast_float/README.md +++ b/contrib/restricted/fast_float/README.md @@ -379,7 +379,7 @@ the command line help. You may directly download automatically generated single-header files: -https://github.com/fastfloat/fast_float/releases/download/v6.1.2/fast_float.h +https://github.com/fastfloat/fast_float/releases/download/v6.1.3/fast_float.h ## RFC 7159 diff --git a/contrib/restricted/fast_float/include/fast_float/ascii_number.h b/contrib/restricted/fast_float/include/fast_float/ascii_number.h index 4c9da17a50..4abe84b3e8 100644 --- a/contrib/restricted/fast_float/include/fast_float/ascii_number.h +++ b/contrib/restricted/fast_float/include/fast_float/ascii_number.h @@ -349,7 +349,7 @@ parsed_number_string_t<UC> parse_number_string(UC const *p, UC const * pend, par ++p; } if ((p == pend) || !is_integer(*p)) { - if(!(fmt & chars_format::fixed) || (fmt & FASTFLOAT_JSONFMT)) { + if(!(fmt & chars_format::fixed)) { // We are in error. return answer; } diff --git a/contrib/restricted/fast_float/ya.make b/contrib/restricted/fast_float/ya.make index 324d1643a9..8142033a0b 100644 --- a/contrib/restricted/fast_float/ya.make +++ b/contrib/restricted/fast_float/ya.make @@ -10,9 +10,9 @@ LICENSE( LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(6.1.2) +VERSION(6.1.3) -ORIGINAL_SOURCE(https://github.com/fastfloat/fast_float/archive/v6.1.2.tar.gz) +ORIGINAL_SOURCE(https://github.com/fastfloat/fast_float/archive/v6.1.3.tar.gz) NO_COMPILER_WARNINGS() |