aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/bigint/big_ops2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/bigint/big_ops2.cpp')
-rw-r--r--src/math/bigint/big_ops2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/bigint/big_ops2.cpp b/src/math/bigint/big_ops2.cpp
index cc50c26e5..193c00e32 100644
--- a/src/math/bigint/big_ops2.cpp
+++ b/src/math/bigint/big_ops2.cpp
@@ -37,7 +37,7 @@ BigInt& BigInt::operator+=(const BigInt& y)
}
else if(relative_size == 0)
{
- get_reg().clear();
+ zeroise(reg);
set_sign(Positive);
}
else if(relative_size > 0)
@@ -72,7 +72,7 @@ BigInt& BigInt::operator-=(const BigInt& y)
{
if(sign() == y.sign())
{
- get_reg().clear();
+ clear();
set_sign(Positive);
}
else
@@ -99,7 +99,7 @@ BigInt& BigInt::operator*=(const BigInt& y)
if(x_sw == 0 || y_sw == 0)
{
- get_reg().clear();
+ clear();
set_sign(Positive);
}
else if(x_sw == 1 && y_sw)