fixed #194
This commit is contained in:
parent
8b6e0dc02d
commit
3245a0dc06
2 changed files with 2 additions and 2 deletions
|
@ -4862,7 +4862,7 @@ class basic_json
|
||||||
}
|
}
|
||||||
else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
|
else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
|
||||||
{
|
{
|
||||||
return static_cast<number_float_t>(lhs.m_value.number_integer == rhs.m_value.number_float);
|
return static_cast<number_float_t>(lhs.m_value.number_integer) == rhs.m_value.number_float;
|
||||||
}
|
}
|
||||||
else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
|
else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
|
||||||
{
|
{
|
||||||
|
|
|
@ -4862,7 +4862,7 @@ class basic_json
|
||||||
}
|
}
|
||||||
else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
|
else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
|
||||||
{
|
{
|
||||||
return static_cast<number_float_t>(lhs.m_value.number_integer == rhs.m_value.number_float);
|
return static_cast<number_float_t>(lhs.m_value.number_integer) == rhs.m_value.number_float;
|
||||||
}
|
}
|
||||||
else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
|
else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue