diff options
author | Jack Lloyd <[email protected]> | 2017-10-06 21:11:55 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-06 21:11:55 -0400 |
commit | e822475e1edd6d7abd564e1310044794275eba48 (patch) | |
tree | 31142b51a8478a6b6b9cfa0d2ed85c0d6f6e5853 /src/lib/math/bigint/big_ops2.cpp | |
parent | 9e3dca25c7197c39a815ce39da670a4232212a45 (diff) |
Remove needless variable
Diffstat (limited to 'src/lib/math/bigint/big_ops2.cpp')
-rw-r--r-- | src/lib/math/bigint/big_ops2.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/math/bigint/big_ops2.cpp b/src/lib/math/bigint/big_ops2.cpp index 48d547af0..c203f363a 100644 --- a/src/lib/math/bigint/big_ops2.cpp +++ b/src/lib/math/bigint/big_ops2.cpp @@ -116,8 +116,6 @@ BigInt& BigInt::operator*=(const BigInt& y) else { grow_to(size() + y.size()); - - secure_vector<word> z(data(), data() + x_sw); secure_vector<word> workspace(size()); bigint_mul(*this, BigInt(*this), y, workspace.data()); } |