LibCrypto: Convert BigFraction stringification to String

This commit is contained in:
Timothy Flynn 2024-12-03 11:36:08 -05:00 committed by Tim Flynn
commit e6c96ce57e
Notes: github-actions[bot] 2024-12-04 13:02:44 +00:00
3 changed files with 4 additions and 4 deletions

View file

@ -55,7 +55,7 @@ public:
// - m_denominator = 10000
BigFraction rounded(unsigned rounding_threshold) const;
ByteString to_byte_string(unsigned rounding_threshold) const;
String to_string(unsigned rounding_threshold) const;
double to_double() const;
Crypto::SignedBigInteger const& numerator() const& { return m_numerator; }