File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -408,7 +408,7 @@ class multipart_t
408
408
if (size () != other->size ())
409
409
return false ;
410
410
for (size_t i = 0 ; i < size (); i++)
411
- if (! peek (i)-> equal ( other->peek (i) ))
411
+ if (* peek (i) != * other->peek (i))
412
412
return false ;
413
413
return true ;
414
414
}
@@ -419,13 +419,13 @@ class multipart_t
419
419
void operator =(const multipart_t & other) ZMQ_DELETED_FUNCTION;
420
420
}; // class multipart_t
421
421
422
- #endif // ZMQ_HAS_RVALUE_REFS
423
-
424
422
inline std::ostream& operator <<(std::ostream& os, const multipart_t & msg)
425
423
{
426
424
return os << msg.str ();
427
425
}
428
426
427
+ #endif // ZMQ_HAS_RVALUE_REFS
428
+
429
429
#if defined(ZMQ_BUILD_DRAFT_API) && defined(ZMQ_CPP11) && defined(ZMQ_HAVE_POLLER)
430
430
class active_poller_t
431
431
{
You can’t perform that action at this time.
0 commit comments