🐛 fixed the issue with GCC7 #590
This commit is contained in:
parent
d19c5ced4b
commit
1a9d76679a
1 changed files with 1 additions and 1 deletions
|
@ -6381,7 +6381,7 @@ class basic_json
|
||||||
{
|
{
|
||||||
case value_t::array:
|
case value_t::array:
|
||||||
{
|
{
|
||||||
return *lhs.m_value.array < *rhs.m_value.array;
|
return (*lhs.m_value.array) < (*rhs.m_value.array);
|
||||||
}
|
}
|
||||||
case value_t::object:
|
case value_t::object:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue