1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:07:46 +00:00

AK+LibAudio: Remove UFixedBigInt::my_size

This commit is contained in:
Dan Klishch 2023-02-09 16:46:07 +03:00 committed by Jelle Raaijmakers
parent 11a7e21c2a
commit 882dcfaddb
3 changed files with 3 additions and 11 deletions

View file

@ -441,12 +441,6 @@ public:
constexpr auto& operator%=(U const& other) { return *this = *this % other; }
constexpr auto& operator%=(IntegerWrapper const& other) { return *this = *this % other; }
// FIXME: Replace uses with more general `assumed_bit_size<T>`.
static constexpr size_t my_size()
{
return sizeof(Storage);
}
// Note: If there ever be need for non side-channel proof sqrt/pow/pow_mod of UFixedBigInt, you
// can restore them from Git history.