Skip to content

Commit

Permalink
Merge pull request #290 from redboltz/fix_raw_ref_not_equal
Browse files Browse the repository at this point in the history
Fixed raw_ref::operator!= implementation.
  • Loading branch information
nobu-k committed May 25, 2015
2 parents 5722ab6 + 7359720 commit 1790062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/msgpack/adaptor/raw.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct raw_ref {

bool operator!= (const raw_ref& x) const
{
return !(*this != x);
return !(*this == x);
}

bool operator< (const raw_ref& x) const
Expand Down

0 comments on commit 1790062

Please sign in to comment.