🐛 fixed copy-paste error

This commit is contained in:
Niels Lohmann 2018-01-08 21:37:51 +01:00
parent fb1154c237
commit fd04967676
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69

View file

@ -6377,7 +6377,7 @@ class binary_writer
oa->write_character(static_cast<CharType>('I')); // int16 oa->write_character(static_cast<CharType>('I')); // int16
write_number(static_cast<int16_t>(n)); write_number(static_cast<int16_t>(n));
} }
else if (-(std::numeric_limits<int32_t>::min)() <= n and n <= (std::numeric_limits<int32_t>::max)()) else if ((std::numeric_limits<int32_t>::min)() <= n and n <= (std::numeric_limits<int32_t>::max)())
{ {
oa->write_character(static_cast<CharType>('l')); // int32 oa->write_character(static_cast<CharType>('l')); // int32
write_number(static_cast<int32_t>(n)); write_number(static_cast<int32_t>(n));
@ -6419,7 +6419,7 @@ class binary_writer
{ {
return 'I'; return 'I';
} }
else if (-(std::numeric_limits<int32_t>::min)() <= j.m_value.number_integer and j.m_value.number_integer <= (std::numeric_limits<int32_t>::max)()) else if ((std::numeric_limits<int32_t>::min)() <= j.m_value.number_integer and j.m_value.number_integer <= (std::numeric_limits<int32_t>::max)())
{ {
return 'l'; return 'l';
} }
@ -6444,7 +6444,7 @@ class binary_writer
{ {
return 'I'; return 'I';
} }
else if (-(std::numeric_limits<int32_t>::min)() <= j.m_value.number_unsigned and j.m_value.number_unsigned <= (std::numeric_limits<int32_t>::max)()) else if ((std::numeric_limits<int32_t>::min)() <= j.m_value.number_unsigned and j.m_value.number_unsigned <= (std::numeric_limits<int32_t>::max)())
{ {
return 'l'; return 'l';
} }