aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/bigint/bigint.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-08-01 14:28:35 +0000
committerlloyd <[email protected]>2012-08-01 14:28:35 +0000
commitcbefe4dd95982006e4d8391aea645e40baa17496 (patch)
treedccafc4a8ebd87d40a930dbd268fdcf449801208 /src/math/bigint/bigint.cpp
parentd23dffe70d1f0b2ef6bd18d1c490fff52b8b401c (diff)
Remove BigInt::get_reg
Diffstat (limited to 'src/math/bigint/bigint.cpp')
-rw-r--r--src/math/bigint/bigint.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/bigint/bigint.cpp b/src/math/bigint/bigint.cpp
index 8669beea3..e28f71df5 100644
--- a/src/math/bigint/bigint.cpp
+++ b/src/math/bigint/bigint.cpp
@@ -42,10 +42,10 @@ BigInt::BigInt(Sign s, size_t size)
/*
* Copy constructor
*/
-BigInt::BigInt(const BigInt& b)
+BigInt::BigInt(const BigInt& other)
{
- m_reg = b.get_reg();
- set_sign(b.sign());
+ m_reg = other.m_reg;
+ m_signedness = other.m_signedness;
}
/*