We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42dc02b commit 140671dCopy full SHA for 140671d
1 file changed
src/rmq/rmqio/rmqio_serializedframe.cpp
@@ -47,8 +47,8 @@ bool SerializedFrame::operator==(const SerializedFrame& other) const
47
48
bool SerializedFrame::operator!=(const SerializedFrame& other) const
49
{
50
- if (d_length == other.d_length) {
51
- return false;
+ if (d_length != other.d_length) {
+ return true;
52
}
53
54
if (!d_buffer || !other.d_buffer) {
0 commit comments