diff options
author | lloyd <[email protected]> | 2015-03-13 00:01:15 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-03-13 00:01:15 +0000 |
commit | d8ab5899e9f8c8d9987cec78fed34365b5ad0ee9 (patch) | |
tree | 53c8be81f4c9a091726a5eb38eeedb3ef99ff436 /src/lib | |
parent | cd0255a904bbd5211466c14edd31248c4a17025e (diff) |
Specify class name for static function
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/math/bigint/big_code.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/bigint/big_code.cpp b/src/lib/math/bigint/big_code.cpp index d71e57849..17bb0bb54 100644 --- a/src/lib/math/bigint/big_code.cpp +++ b/src/lib/math/bigint/big_code.cpp @@ -82,7 +82,7 @@ secure_vector<byte> BigInt::encode_locked(const BigInt& n, Base base) secure_vector<byte> BigInt::encode_1363(const BigInt& n, size_t bytes) { secure_vector<byte> output(bytes); - encode_1363(&output[0], output.size(), n); + BigInt::encode_1363(&output[0], output.size(), n); return output; } |