clean up whitespace

This commit is contained in:
dzaima 2022-11-24 01:26:35 +02:00
parent b3d0d5cb49
commit d383fe57a7
8 changed files with 15 additions and 15 deletions

View File

@ -410,11 +410,11 @@ static u64 gcd_u64(u64 a, u64 b) {
b >>= bz; b >>= bz;
while (a > 0) { while (a > 0) {
a >>= az; a >>= az;
u64 d = b - a; u64 d = b - a;
az = CTZ(d); az = CTZ(d);
b = b<a? b : a; b = b<a? b : a;
a = b<a? -d : d; a = b<a? -d : d;
} }
return b << sh; return b << sh;
} }