Skip to content

Commit

Permalink
fix in json.hpp
Browse files Browse the repository at this point in the history
Due to error: nlohmann/json#590
  • Loading branch information
henrisve committed Sep 2, 2018
1 parent b74cff3 commit 3486fb2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6054,8 +6054,7 @@ class basic_json
{
case value_t::array:
{
//Erro??
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 3486fb2

Please sign in to comment.