Skip to content

Commit 8845ef9

Browse files
committed
fmt
1 parent f159f34 commit 8845ef9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libc/src/__support/complex_type.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ template <typename T> LIBC_INLINE constexpr T project(T c) {
8484
Complex<real_t> c_c = cpp::bit_cast<Complex<real_t>>(c);
8585
if (fputil::FPBits<real_t>(c_c.real).is_inf() ||
8686
fputil::FPBits<real_t>(c_c.imag).is_inf()) {
87-
return cpp::bit_cast<T>(Complex<real_t>{
88-
(fputil::FPBits<real_t>::inf(Sign::POS).get_val()),
89-
static_cast<real_t>(c_c.imag > 0 ? 0.0 : -0.0)});
87+
return cpp::bit_cast<T>(
88+
Complex<real_t>{(fputil::FPBits<real_t>::inf(Sign::POS).get_val()),
89+
static_cast<real_t>(c_c.imag > 0 ? 0.0 : -0.0)});
9090
} else {
9191
return c;
9292
}

0 commit comments

Comments
 (0)