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