Skip to content

Commit b635dec

Browse files
committed
clang format
1 parent 23787fc commit b635dec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/fast_float/parse_number.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ from_chars_result_t<UC> FASTFLOAT_CONSTEXPR14 parse_infnan(UC const *first,
2525
from_chars_result_t<UC> answer{};
2626
answer.ptr = first;
2727
answer.ec = std::errc(); // be optimistic
28-
bool const minusSign = (*first == UC('-')); // assume first < last, so dereference without checks;
28+
// assume first < last, so dereference without checks;
29+
bool const minusSign = (*first == UC('-'));
2930
#ifdef FASTFLOAT_ALLOWS_LEADING_PLUS // disabled by default
3031
if ((*first == UC('-')) || (*first == UC('+'))) {
3132
#else

0 commit comments

Comments
 (0)