mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Fix parenthesis warning on clang
This commit is contained in:
+1
-1
@@ -865,7 +865,7 @@ u64 mulAddVWW(BigInt *z, BigInt const *x, u64 y, u64 r) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool bi__greater_than(u64 x1, u64 x2, u64 y1, u64 y2) {
|
bool bi__greater_than(u64 x1, u64 x2, u64 y1, u64 y2) {
|
||||||
return x1 > y1 || x1 == x2 && x2 > y2;
|
return x1 > y1 || (x1 == x2 && x2 > y2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void bi__div_large(BigInt const *a, BigInt const *b, BigInt *q, BigInt *r) {
|
void bi__div_large(BigInt const *a, BigInt const *b, BigInt *q, BigInt *r) {
|
||||||
|
|||||||
Reference in New Issue
Block a user