diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-01-13 10:52:17 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-15 01:00:20 +0000 |
commit | 0ddc2e1f503e8566c7f153741739d380fc05a09f (patch) | |
tree | bb88a46c6d9071c779ad9464ddd572733a19f4f4 /Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h | |
parent | 63c814fa2f05e6278fdbeb084f99e851c28006c8 (diff) | |
download | serenity-0ddc2e1f503e8566c7f153741739d380fc05a09f.zip |
LibCrypto+Everywhere: Rename *BigInteger::to_base to to_base_deprecated
Diffstat (limited to 'Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h')
-rw-r--r-- | Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h b/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h index c9a4c38021..2738d5e18e 100644 --- a/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h +++ b/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h @@ -63,7 +63,7 @@ public: size_t export_data(Bytes, bool remove_leading_zeros = false) const; [[nodiscard]] static UnsignedBigInteger from_base(u16 N, StringView str); - [[nodiscard]] DeprecatedString to_base(u16 N) const; + [[nodiscard]] DeprecatedString to_base_deprecated(u16 N) const; [[nodiscard]] u64 to_u64() const; |