mirror of
https://github.com/nlohmann/json.git
synced 2026-07-07 02:55:09 +00:00
🚷 fixed the issue with GCC7 #590
This commit is contained in:
+1
-1
@@ -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