Problem: trailing whitespace breaks clang-format-check

Solution: fix issue introduced by #3270
This commit is contained in:
Luca Boccassi 2018-10-08 17:17:13 +01:00
parent b9b325ce3b
commit cfc9d5f519

View File

@ -125,7 +125,7 @@ int zmq::dgram_t::xsend (msg_t *msg_)
// flip the more flag // flip the more flag
_more_out = !_more_out; _more_out = !_more_out;
// Detach the message from the data buffer. // Detach the message from the data buffer.
int rc = msg_->init (); int rc = msg_->init ();
errno_assert (rc == 0); errno_assert (rc == 0);