Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/boost/charconv/detail/fast_float/float_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ struct binary_format_lookup_tables<double, U> {

// Largest integer value v so that (5**index * v) <= 1<<53.
// 0x10000000000000 == 1 << 53
static constexpr std::uint64_t max_mantissa[] = {
static constexpr uint64_t max_mantissa[] = {
UINT64_C(0x10000000000000),
UINT64_C(0x10000000000000) / UINT64_C(5),
UINT64_C(0x10000000000000) / (UINT64_C(5) * UINT64_C(5)),
Expand Down
Loading