mirror of
https://github.com/nlohmann/json
synced 2024-11-10 06:20:06 +00:00
compare against max float and min float before converting
This commit is contained in:
parent
779a0ec7df
commit
5dd27f1a9f
@ -194,8 +194,8 @@ class binary_writer
|
||||
}
|
||||
else
|
||||
{
|
||||
if (j.m_value.number_float > -std::numeric_limits<float>::min() and
|
||||
j.m_value.number_float < std::numeric_limits<float>::max() and
|
||||
if (j.m_value.number_float >= std::numeric_limits<float>::lowest() and
|
||||
j.m_value.number_float <= std::numeric_limits<float>::max() and
|
||||
static_cast<double>(static_cast<float>(j.m_value.number_float)) == j.m_value.number_float)
|
||||
{
|
||||
oa->write_character(get_cbor_float_prefix(static_cast<float>(j.m_value.number_float)));
|
||||
|
@ -12143,8 +12143,8 @@ class binary_writer
|
||||
}
|
||||
else
|
||||
{
|
||||
if (j.m_value.number_float > -std::numeric_limits<float>::min() and
|
||||
j.m_value.number_float < std::numeric_limits<float>::max() and
|
||||
if (j.m_value.number_float >= std::numeric_limits<float>::lowest() and
|
||||
j.m_value.number_float <= std::numeric_limits<float>::max() and
|
||||
static_cast<double>(static_cast<float>(j.m_value.number_float)) == j.m_value.number_float)
|
||||
{
|
||||
oa->write_character(get_cbor_float_prefix(static_cast<float>(j.m_value.number_float)));
|
||||
|
Loading…
Reference in New Issue
Block a user