mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-06 16:56:57 +08:00
Finally: after type refactoring is done give compiler opportunity to select best type for performance.
This commit is contained in:
parent
d67876e2f7
commit
58cb366e7e
@ -34,12 +34,12 @@
|
||||
namespace fast_float {
|
||||
|
||||
// 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.
|
||||
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;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user