Skip to content

Commit 54d1f5a

Browse files
committed
fucking lint
1 parent 0d36a01 commit 54d1f5a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

include/fast_float/float_common.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,8 +465,10 @@ 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
469-
uint64_t_umul128(uint64_t ab, uint64_t cd, uint64_t *hi) noexcept {
468+
fastfloat_really_inline FASTFLOAT_CONSTEXPR14 uint64_t _umul128(uint64_t ab,
469+
uint64_t cd,
470+
uint64_t *hi)
471+
noexcept {
470472
return umul128_generic(ab, cd, hi);
471473
}
472474
#endif // !__MINGW64__

0 commit comments

Comments
 (0)