Skip to content

Commit 350ad6e

Browse files
committed
unfck lint
1 parent d07362c commit 350ad6e

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

include/fast_float/ascii_number.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ parse_number_string(UC const *p, UC const *pend,
406406
#else
407407
if ((UC('e') == *p) || (UC('E') == *p)
408408
#ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN
409-
|| (UC('d') == *p) || (UC('D') == *p)
409+
|| (UC('d') == *p) || (UC('D') == *p)
410410
#endif
411411
) {
412412
++p;

include/fast_float/float_common.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -465,10 +465,8 @@ umul128_generic(uint64_t ab, uint64_t cd, uint64_t *hi) noexcept {
465465

466466
// slow emulation routine for 32-bit
467467
#if !defined(__MINGW64__)
468-
fastfloat_really_inline FASTFLOAT_CONSTEXPR14 uint64_t_umul128(uint64_t ab,
469-
uint64_t cd,
470-
uint64_t *hi)
471-
noexcept {
468+
fastfloat_really_inline FASTFLOAT_CONSTEXPR14
469+
uint64_t_umul128(uint64_t ab, uint64_t cd, uint64_t *hi) noexcept {
472470
return umul128_generic(ab, cd, hi);
473471
}
474472
#endif // !__MINGW64__

tests/basictest.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
// compile-time tests in this file on MSVC; disable the constexpr tests when
2727
// compiling with MSVC (but allow them for clang/clang-cl).
2828
#if defined(_MSC_VER) && !defined(__clang__)
29-
# ifdef FASTFLOAT_CONSTEXPR_TESTS
30-
# undef FASTFLOAT_CONSTEXPR_TESTS
31-
# endif
29+
#ifdef FASTFLOAT_CONSTEXPR_TESTS
30+
#undef FASTFLOAT_CONSTEXPR_TESTS
31+
#endif
3232
#endif
3333

3434
#if FASTFLOAT_HAS_BIT_CAST

0 commit comments

Comments
 (0)