diff options
author | lloyd <[email protected]> | 2008-07-07 03:14:39 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-07-07 03:14:39 +0000 |
commit | aa2fdc075f1906c8637e5c88d0c3b95ccaca742f (patch) | |
tree | f42af8f67160aeb96a81bdd925da3a5b183f7822 | |
parent | 1fda9c9a5539785db9507ce1c7870b621de96d65 (diff) |
Remove unneeded parens
-rw-r--r-- | src/big_ops2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/big_ops2.cpp b/src/big_ops2.cpp index 0f3511244..cecb77207 100644 --- a/src/big_ops2.cpp +++ b/src/big_ops2.cpp @@ -20,7 +20,7 @@ BigInt& BigInt::operator+=(const BigInt& y) const u32bit reg_size = std::max(x_sw, y_sw) + 1; grow_to(reg_size); - if((sign() == y.sign())) + if(sign() == y.sign()) bigint_add2(get_reg(), reg_size - 1, y.data(), y_sw); else { |