You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::uint64_t numbers above a certain value are not formatted correctly:
in the following minimal example first is formatted correctly (commas are used as separators), while second is not correctly formatted (no commas are used)
As reported in #235 formatting the first number which doesn't fit into
int64_t anymore fails to add the thousands separators.
I.e.:
`9223372036854775807` -> `9,223,372,036,854,775,807`
`9223372036854775808` -> `9223372036854775808`
Add a test reproducing that that for all backends.
As reported in #235 formatting the first number which doesn't fit into
int64_t anymore fails to add the thousands separators.
I.e.:
`9223372036854775807` -> `9,223,372,036,854,775,807`
`9223372036854775808` -> `9223372036854775808`
Add a test reproducing that that for all backends.
Boost version: 1.83.000
Compiler : GCC 13.2.0
std::uint64_t numbers above a certain value are not formatted correctly:
in the following minimal example
first
is formatted correctly (commas are used as separators), whilesecond
is not correctly formatted (no commas are used)Example:
Console output:
9,223,372,036,854 9223372036854775808
The text was updated successfully, but these errors were encountered: