diff options
Diffstat (limited to 'src/math/bigint/bigint.h')
-rw-r--r-- | src/math/bigint/bigint.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/math/bigint/bigint.h b/src/math/bigint/bigint.h index 3fee70899..0c01d56c1 100644 --- a/src/math/bigint/bigint.h +++ b/src/math/bigint/bigint.h @@ -484,6 +484,15 @@ class BOTAN_DLL BigInt */ BigInt(NumberType type, size_t n); + /** + * Move constructor + */ + BigInt(BigInt&& other); + + /** + * Move assignment + */ + BigInt& operator=(BigInt&& other); private: SecureVector<word> reg; Sign signedness; |