diff options
author | Dan Klishch <danilklishch@gmail.com> | 2023-02-09 16:46:07 +0300 |
---|---|---|
committer | Jelle Raaijmakers <jelle@gmta.nl> | 2023-03-05 13:49:43 +0100 |
commit | 882dcfaddbec830b84076e4668f244a5f1d07810 (patch) | |
tree | 2766819e6d139aa469f4c0c8d9763c04bd2d691b /AK/UFixedBigInt.h | |
parent | 11a7e21c2adce7d81d82cc80ad84a4132251c376 (diff) | |
download | serenity-882dcfaddbec830b84076e4668f244a5f1d07810.zip |
AK+LibAudio: Remove UFixedBigInt::my_size
Diffstat (limited to 'AK/UFixedBigInt.h')
-rw-r--r-- | AK/UFixedBigInt.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/AK/UFixedBigInt.h b/AK/UFixedBigInt.h index 2020c59f16..397eaf042b 100644 --- a/AK/UFixedBigInt.h +++ b/AK/UFixedBigInt.h @@ -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. |