aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/math/bigint/big_ops3.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-10-03 00:37:43 -0400
committerJack Lloyd <[email protected]>2017-10-03 00:37:43 -0400
commit180540de74c58a72492692f58b63f32647e80bd8 (patch)
tree9009e260b21d1e3b0b739f58ca831b7395136327 /src/lib/math/bigint/big_ops3.cpp
parente4eaf414973f65c4e36a34a7b19f1cc20fe93f8a (diff)
Remove redundant parens
Sonar
Diffstat (limited to 'src/lib/math/bigint/big_ops3.cpp')
-rw-r--r--src/lib/math/bigint/big_ops3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/bigint/big_ops3.cpp b/src/lib/math/bigint/big_ops3.cpp
index a864fa96c..48d84c8b4 100644
--- a/src/lib/math/bigint/big_ops3.cpp
+++ b/src/lib/math/bigint/big_ops3.cpp
@@ -23,7 +23,7 @@ BigInt operator+(const BigInt& x, const BigInt& y)
BigInt z(x.sign(), std::max(x_sw, y_sw) + 1);
- if((x.sign() == y.sign()))
+ if(x.sign() == y.sign())
bigint_add3(z.mutable_data(), x.data(), x_sw, y.data(), y_sw);
else
{