Problem: trailing whitespace in code

Solution: fix them
This commit is contained in:
hitstergtd
2016-04-25 12:18:46 +01:00
parent 11311f9776
commit b2d0ab18f2
28 changed files with 125 additions and 125 deletions

View File

@@ -64,7 +64,7 @@ void zmq::mailbox_safe_t::remove_signaler(signaler_t* signaler)
// TODO: make a copy of array and signal outside the lock
for (; it != signalers.end(); ++it){
if (*it == signaler)
break;
break;
}
if (it != signalers.end())
@@ -92,7 +92,7 @@ int zmq::mailbox_safe_t::recv (command_t *cmd_, int timeout_)
// Try to get the command straight away.
if (cpipe.read (cmd_))
return 0;
// Wait for signal from the command sender.
int rc = cond_var.wait (sync, timeout_);
if (rc == -1) {