Problem: formatting issues in the CI

Solution: commit clang-format-diff
This commit is contained in:
Luca Boccassi
2018-03-10 12:44:27 +00:00
parent fef99d6c50
commit 8d544ef1c4
9 changed files with 28 additions and 26 deletions

View File

@@ -347,7 +347,7 @@ int zmq::tcp_connecter_t::open ()
return -1;
}
// Connect to the remote peer.
// Connect to the remote peer.
#if defined ZMQ_HAVE_VXWORKS
rc = ::connect (s, (sockaddr *) tcp_addr->addr (), tcp_addr->addrlen ());
#else
@@ -358,8 +358,8 @@ int zmq::tcp_connecter_t::open ()
return 0;
}
// Translate error codes indicating asynchronous connect has been
// launched to a uniform EINPROGRESS.
// Translate error codes indicating asynchronous connect has been
// launched to a uniform EINPROGRESS.
#ifdef ZMQ_HAVE_WINDOWS
const int last_error = WSAGetLastError ();
if (last_error == WSAEINPROGRESS || last_error == WSAEWOULDBLOCK)