This commit is contained in:
ibroheem 2017-06-02 18:24:45 +00:00 committed by GitHub
commit 83b2f65f74

View File

@ -6381,7 +6381,8 @@ 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; // g++ version < 7
return (*lhs.m_value.array) < (*rhs.m_value.array); /// g++ 7
}
case value_t::object:
{