summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2021-07-11 23:48:40 +0300
committerLinus Groh <mail@linusgroh.de>2021-07-12 19:05:17 +0100
commit75d1ffea005a1677faa89d6e50e7b9de7817a4f8 (patch)
treea099c08b2e77cb158e50829c2ba2b96ee5b7ddd2 /Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h
parent01c731aa59c1ea983fecb93518e440e904204036 (diff)
downloadserenity-75d1ffea005a1677faa89d6e50e7b9de7817a4f8.zip
LibCrypto: Add the >= operator to UnsignedBigInteger
Diffstat (limited to 'Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h')
-rw-r--r--Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h b/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h
index e37c9e95b4..9b9e191247 100644
--- a/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h
+++ b/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h
@@ -99,6 +99,7 @@ public:
bool operator!=(const UnsignedBigInteger& other) const;
bool operator<(const UnsignedBigInteger& other) const;
bool operator>(const UnsignedBigInteger& other) const;
+ bool operator>=(UnsignedBigInteger const& other) const;
private:
friend class UnsignedBigIntegerAlgorithms;