Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,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
4 changes: 2 additions & 2 deletions include/boost/json/impl/value_stack.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -434,15 +434,15 @@ push_string(
void
value_stack::
push_int64(
int64_t i)
std::int64_t i)
{
st_.push(i, sp_);
}

void
value_stack::
push_uint64(
uint64_t u)
std::uint64_t u)
{
st_.push(u, sp_);
}
Expand Down
Loading