Skip to content

Commit bcf433b

Browse files
committed
fix code style
1 parent c22217a commit bcf433b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/__support/math/exp10.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ static Float128 exp10_f128(double x, double kd, int idx1, int idx2) {
160160

161161
// Compute 10^x with double-double precision.
162162
static DoubleDouble exp10_double_double(double x, double kd,
163-
const DoubleDouble &exp_mid) {
163+
const DoubleDouble &exp_mid) {
164164
// Recalculate dx:
165165
// dx = x - k * 2^-12 * log10(2)
166166
double t1 = fputil::multiply_add(kd, MLOG10_2_EXP2_M12_HI, x); // exact

0 commit comments

Comments
 (0)