1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

LibCrypto+Everywhere: Rename *BigInteger::to_base to to_base_deprecated

This commit is contained in:
Timothy Flynn 2023-01-13 10:52:17 -05:00 committed by Linus Groh
parent 63c814fa2f
commit 0ddc2e1f50
17 changed files with 24 additions and 24 deletions

View file

@ -237,7 +237,7 @@ int MathematicalValue::logarithmic_floor() const
},
[](Crypto::SignedBigInteger const& value) {
// FIXME: Can we do this without string conversion?
return static_cast<int>(value.to_base(10).length() - 1);
return static_cast<int>(value.to_base_deprecated(10).length() - 1);
},
[](auto) -> int { VERIFY_NOT_REACHED(); });
}
@ -297,7 +297,7 @@ DeprecatedString MathematicalValue::to_deprecated_string() const
{
return m_value.visit(
[](double value) { return number_to_string(value, NumberToStringMode::WithoutExponent); },
[](Crypto::SignedBigInteger const& value) { return value.to_base(10); },
[](Crypto::SignedBigInteger const& value) { return value.to_base_deprecated(10); },
[](auto) -> DeprecatedString { VERIFY_NOT_REACHED(); });
}