File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ fastfloat_really_inline FASTFLOAT_CONSTEXPR20 uint64_t
5353read8_to_u64 (UC const *chars) {
5454 if (cpp20_and_in_constexpr () || !std::is_same<UC, char >::value) {
5555 uint64_t val = 0 ;
56- for (uint_fast8_t i = 0 ; i++ != 8 ;) {
56+ for (uint_fast8_t i = 0 ; i != 8 ; ++i ) {
5757 val |= uint64_t (uint8_t (*chars)) << (i * 8 );
5858 ++chars;
5959 }
@@ -259,7 +259,7 @@ template <typename UC> struct parsed_number_string_t {
259259 // contains the range of the significant digits
260260 span<UC const > integer{}; // non-nullable
261261 span<UC const > fraction{}; // nullable
262- UC const *lastmatch{ nullptr } ;
262+ UC const *lastmatch;
263263#ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN
264264 bool negative{false };
265265#endif
You can’t perform that action at this time.
0 commit comments