Skip to content

Commit 18d90cb

Browse files
committed
1 parent eb4c7e8 commit 18d90cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

json.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -5890,7 +5890,7 @@ class basic_json
58905890
{
58915891
case value_t::array:
58925892
{
5893-
return *lhs.m_value.array == *rhs.m_value.array;
5893+
return (*lhs.m_value.array) == *rhs.m_value.array;
58945894
}
58955895
case value_t::object:
58965896
{
@@ -6054,7 +6054,7 @@ class basic_json
60546054
{
60556055
case value_t::array:
60566056
{
6057-
return *lhs.m_value.array < *rhs.m_value.array;
6057+
return (*lhs.m_value.array) < *rhs.m_value.array;
60586058
}
60596059
case value_t::object:
60606060
{

0 commit comments

Comments
 (0)