Skip to content

Commit 668199d

Browse files
committed
Formatting changes
1 parent 0f694e1 commit 668199d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libc/src/__support/FPUtil/Hypot.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,10 @@ LIBC_INLINE T hypot(T x, T y) {
207207

208208
for (StorageType current_bit = leading_one >> 1; current_bit;
209209
current_bit >>= 1) {
210-
r = static_cast<StorageType>((r << 1)) + ((tail_bits & current_bit) ? 1 : 0);
211-
StorageType tmp = static_cast<StorageType>((y_new << 1)) + current_bit; // 2*y_new(n - 1) + 2^(-n)
210+
r = static_cast<StorageType>((r << 1)) +
211+
((tail_bits & current_bit) ? 1 : 0);
212+
StorageType tmp = static_cast<StorageType>((y_new << 1)) +
213+
current_bit; // 2*y_new(n - 1) + 2^(-n)
212214
if (r >= tmp) {
213215
r -= tmp;
214216
y_new += current_bit;

0 commit comments

Comments
 (0)