Skip to content

Commit 97a05b0

Browse files
committed
Formatting changes
1 parent f72c7f2 commit 97a05b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc/src/__support/FPUtil/Hypot.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ LIBC_INLINE T hypot(T x, T y) {
208208
for (StorageType current_bit = leading_one >> 1; current_bit;
209209
current_bit >>= 1) {
210210
r = (StorageType)(r << 1) + ((tail_bits & current_bit) ? 1 : 0);
211-
StorageType tmp = (StorageType)(y_new << 1) + current_bit; // 2*y_new(n - 1) + 2^(-n)
211+
StorageType tmp =
212+
(StorageType)(y_new << 1) + current_bit; // 2*y_new(n - 1) + 2^(-n)
212213
if (r >= tmp) {
213214
r -= tmp;
214215
y_new += current_bit;

0 commit comments

Comments
 (0)