mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +02:00
LibCrypto+LibJS: Remove {Signed,Unsigned}BigInteger to_base_deprecated
Use `to_base` instead.
This commit is contained in:
committed by
Jelle Raaijmakers
parent
ac16008d09
commit
a019efb24b
Notes:
github-actions[bot]
2025-04-28 10:07:28 +00:00
Author: https://github.com/devgianlu Commit: https://github.com/LadybirdBrowser/ladybird/commit/a019efb24bd Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4482 Reviewed-by: https://github.com/gmta ✅
@@ -166,11 +166,6 @@ ErrorOr<String> UnsignedBigInteger::to_base(u16 N) const
|
||||
return TRY(builder.to_string()).reverse();
|
||||
}
|
||||
|
||||
ByteString UnsignedBigInteger::to_base_deprecated(u16 N) const
|
||||
{
|
||||
return MUST(to_base(N)).to_byte_string();
|
||||
}
|
||||
|
||||
u64 UnsignedBigInteger::to_u64() const
|
||||
{
|
||||
static_assert(sizeof(Word) == 4);
|
||||
|
||||
Reference in New Issue
Block a user