Skip to content

Commit 1a9d766

Browse files
committed
🐛 fixed the issue with GCC7 #590
1 parent d19c5ce commit 1a9d766

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/json.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6381,7 +6381,7 @@ class basic_json
63816381
{
63826382
case value_t::array:
63836383
{
6384-
return *lhs.m_value.array < *rhs.m_value.array;
6384+
return (*lhs.m_value.array) < (*rhs.m_value.array);
63856385
}
63866386
case value_t::object:
63876387
{

0 commit comments

Comments
 (0)