Finally: after type refactoring is done give compiler opportunity to select best type for performance.

This commit is contained in:
IRainman 2025-05-05 18:21:35 +03:00
parent d67876e2f7
commit 58cb366e7e

View File

@ -34,12 +34,12 @@
namespace fast_float { namespace fast_float {
// The number of digits in the mantissa. // The number of digits in the mantissa.
typedef uint16_t am_digits; typedef uint_fast16_t am_digits;
// The number of bits in the limb. // The number of bits in the limb.
typedef uint8_t limb_t; typedef uint_fast8_t limb_t;
typedef uint8_t chars_format_t; typedef uint_fast8_t chars_format_t;
enum class chars_format : chars_format_t; enum class chars_format : chars_format_t;