🐛 fixed regression #1530

This commit is contained in:
Niels Lohmann 2019-03-20 12:41:08 +01:00
parent 483a086562
commit c790b9f8c0
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
2 changed files with 6 additions and 2 deletions

View File

@ -5728,7 +5728,9 @@ class basic_json
switch (lhs_type)
{
case value_t::array:
return *lhs.m_value.array < *rhs.m_value.array;
// note parentheses are necessary, see
// https://github.com/nlohmann/json/issues/1530
return (*lhs.m_value.array < *rhs.m_value.array);
case value_t::object:
return *lhs.m_value.object < *rhs.m_value.object;

View File

@ -18493,7 +18493,9 @@ class basic_json
switch (lhs_type)
{
case value_t::array:
return *lhs.m_value.array < *rhs.m_value.array;
// note parentheses are necessary, see
// https://github.com/nlohmann/json/issues/1530
return (*lhs.m_value.array < *rhs.m_value.array);
case value_t::object:
return *lhs.m_value.object < *rhs.m_value.object;