mirror of
https://github.com/nlohmann/json.git
synced 2025-07-28 12:02:00 +03:00
🐛 fixed the issue with GCC7 #590
This commit is contained in:
@ -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:
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user