🐛 fixed the issue with GCC7 #590

This commit is contained in:
Niels Lohmann 2017-06-04 18:40:32 +02:00
parent d19c5ced4b
commit 1a9d76679a
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69

View file

@ -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:
{