From 882dcfaddbec830b84076e4668f244a5f1d07810 Mon Sep 17 00:00:00 2001 From: Dan Klishch Date: Thu, 9 Feb 2023 16:46:07 +0300 Subject: AK+LibAudio: Remove UFixedBigInt::my_size --- AK/UFixedBigInt.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'AK/UFixedBigInt.h') 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`. - 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. -- cgit v1.2.3