Skip to content

Commit 1790062

Browse files
committed
Merge pull request #290 from redboltz/fix_raw_ref_not_equal
Fixed raw_ref::operator!= implementation.
2 parents 5722ab6 + 7359720 commit 1790062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/msgpack/adaptor/raw.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ struct raw_ref {
4747

4848
bool operator!= (const raw_ref& x) const
4949
{
50-
return !(*this != x);
50+
return !(*this == x);
5151
}
5252

5353
bool operator< (const raw_ref& x) const

0 commit comments

Comments
 (0)