Skip to content

Commit

Permalink
resolving compiler bug: nlohmann/json#590
Browse files Browse the repository at this point in the history
  • Loading branch information
jandrejk committed Feb 1, 2019
1 parent 1b34ae4 commit 7108cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5646,7 +5646,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:
{
Expand Down

0 comments on commit 7108cd2

Please sign in to comment.