@@ -1186,7 +1186,7 @@ template <>
11861186inline constexpr am_mant_t
11871187binary_format<double >::max_mantissa_fast_path(am_pow_t power) {
11881188 // caller is responsible to ensure that
1189- FASTFLOAT_ASSUME (power >= 0 && power <= 22 );
1189+ // FASTFLOAT_ASSUME(power >= 0 && power <= 22);
11901190#if defined(__clang__)
11911191 // Work around clang bug https://godbolt.org/z/zedh7rrhc
11921192 return (void )max_mantissa[0 ], max_mantissa[power];
@@ -1199,7 +1199,7 @@ template <>
11991199inline constexpr am_mant_t
12001200binary_format<float >::max_mantissa_fast_path(am_pow_t power) {
12011201 // caller is responsible to ensure that
1202- FASTFLOAT_ASSUME (power >= 0 && power <= 10 );
1202+ // FASTFLOAT_ASSUME(power >= 0 && power <= 10);
12031203#if defined(__clang__)
12041204 // Work around clang bug https://godbolt.org/z/zedh7rrhc
12051205 return (void )max_mantissa[0 ], max_mantissa[power];
@@ -1212,7 +1212,7 @@ template <>
12121212inline constexpr double
12131213binary_format<double >::exact_power_of_ten(am_pow_t power) {
12141214 // caller is responsible to ensure that
1215- FASTFLOAT_ASSUME (power >= 0 && power <= 22 );
1215+ // FASTFLOAT_ASSUME(power >= 0 && power <= 22);
12161216#if defined(__clang__)
12171217 // Work around clang bug https://godbolt.org/z/zedh7rrhc
12181218 return (void )powers_of_ten[0 ], powers_of_ten[power];
@@ -1225,7 +1225,7 @@ template <>
12251225inline constexpr float
12261226binary_format<float >::exact_power_of_ten(am_pow_t power) {
12271227 // caller is responsible to ensure that
1228- FASTFLOAT_ASSUME (power >= 0 && power <= 10 );
1228+ // FASTFLOAT_ASSUME(power >= 0 && power <= 10);
12291229#if defined(__clang__)
12301230 // Work around clang bug https://godbolt.org/z/zedh7rrhc
12311231 return (void )powers_of_ten[0 ], powers_of_ten[power];
0 commit comments