mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
LibCrypto: Allow moving SignedBigInteger / UnsignedBigInteger
We defined copy operations but not move operations, so every existing move() resulted in a copy.
This commit is contained in:
committed by
Jelle Raaijmakers
parent
cd73c70ad6
commit
8600c5149b
Notes:
github-actions[bot]
2025-07-21 13:23:41 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/8600c5149b9 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5543 Reviewed-by: https://github.com/gmta ✅
@@ -29,7 +29,10 @@ public:
|
||||
explicit SignedBigInteger(i64 value);
|
||||
|
||||
SignedBigInteger(SignedBigInteger const&);
|
||||
SignedBigInteger(SignedBigInteger&&);
|
||||
|
||||
SignedBigInteger& operator=(SignedBigInteger const&);
|
||||
SignedBigInteger& operator=(SignedBigInteger&&);
|
||||
|
||||
SignedBigInteger();
|
||||
~SignedBigInteger();
|
||||
|
||||
Reference in New Issue
Block a user