Skip to content

Commit bb956b2

Browse files
committed
release candidate 8.0.3
1 parent 48fc540 commit bb956b2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.14)
22

33

4-
project(fast_float VERSION 8.0.2 LANGUAGES CXX)
4+
project(fast_float VERSION 8.0.3 LANGUAGES CXX)
55
set(FASTFLOAT_CXX_STANDARD 11 CACHE STRING "the C++ standard to use for fastfloat")
66
set(CMAKE_CXX_STANDARD ${FASTFLOAT_CXX_STANDARD})
77
option(FASTFLOAT_TEST "Enable tests" OFF)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ sufficiently recent version of CMake (3.11 or better at least):
489489
FetchContent_Declare(
490490
fast_float
491491
GIT_REPOSITORY https://github.com/fastfloat/fast_float.git
492-
GIT_TAG tags/v8.0.2
492+
GIT_TAG tags/v8.0.3
493493
GIT_SHALLOW TRUE)
494494
495495
FetchContent_MakeAvailable(fast_float)
@@ -505,7 +505,7 @@ You may also use [CPM](https://github.com/cpm-cmake/CPM.cmake), like so:
505505
CPMAddPackage(
506506
NAME fast_float
507507
GITHUB_REPOSITORY "fastfloat/fast_float"
508-
GIT_TAG v8.0.2)
508+
GIT_TAG v8.0.3)
509509
```
510510

511511
## Using as single header
@@ -517,7 +517,7 @@ if desired as described in the command line help.
517517

518518
You may directly download automatically generated single-header files:
519519

520-
<https://github.com/fastfloat/fast_float/releases/download/v8.0.2/fast_float.h>
520+
<https://github.com/fastfloat/fast_float/releases/download/v8.0.3/fast_float.h>
521521

522522
## Benchmarking
523523

include/fast_float/float_common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#define FASTFLOAT_VERSION_MAJOR 8
1919
#define FASTFLOAT_VERSION_MINOR 0
20-
#define FASTFLOAT_VERSION_PATCH 2
20+
#define FASTFLOAT_VERSION_PATCH 3
2121

2222
#define FASTFLOAT_STRINGIZE_IMPL(x) #x
2323
#define FASTFLOAT_STRINGIZE(x) FASTFLOAT_STRINGIZE_IMPL(x)
@@ -1134,7 +1134,7 @@ template <typename UC>
11341134
fastfloat_really_inline constexpr uint8_t ch_to_digit(UC c) {
11351135
// wchar_t and char can be signed, so we need to be careful.
11361136
using UnsignedUC = typename std::make_unsigned<UC>::type;
1137-
return int_luts<>::chdigit[static_cast<unsigned char>(static_cast<UnsignedUC>(c)
1137+
return int_luts<>::chdigit[static_cast<unsigned char>(static_cast<UnsignedUC>(c)
11381138
& static_cast<UnsignedUC>(-((static_cast<UnsignedUC>(c) & ~0xFFull) == 0)))];
11391139
}
11401140

0 commit comments

Comments
 (0)