mirror of
https://github.com/zeromq/libzmq.git
synced 2025-11-06 21:56:25 +01:00
Problem: trailing whitespace in code
Solution: fix them
This commit is contained in:
@@ -61,7 +61,7 @@ namespace zmq
|
||||
{
|
||||
socket_base_t *socket;
|
||||
fd_t fd;
|
||||
void *user_data;
|
||||
void *user_data;
|
||||
short events;
|
||||
} event_t;
|
||||
|
||||
@@ -79,7 +79,7 @@ namespace zmq
|
||||
bool check_tag ();
|
||||
|
||||
private:
|
||||
int rebuild ();
|
||||
int rebuild ();
|
||||
|
||||
// Used to check whether the object is a socket_poller.
|
||||
uint32_t tag;
|
||||
@@ -90,7 +90,7 @@ namespace zmq
|
||||
typedef struct item_t {
|
||||
socket_base_t *socket;
|
||||
fd_t fd;
|
||||
void *user_data;
|
||||
void *user_data;
|
||||
short events;
|
||||
#if defined ZMQ_POLL_BASED_ON_POLL
|
||||
int pollfd_index;
|
||||
@@ -106,10 +106,10 @@ namespace zmq
|
||||
|
||||
// Should the signaler be used for the thread safe polling?
|
||||
bool use_signaler;
|
||||
|
||||
|
||||
// Size of the pollset
|
||||
int poll_size;
|
||||
|
||||
|
||||
#if defined ZMQ_POLL_BASED_ON_POLL
|
||||
pollfd *pollfds;
|
||||
#elif defined ZMQ_POLL_BASED_ON_SELECT
|
||||
@@ -118,7 +118,7 @@ namespace zmq
|
||||
fd_set pollset_err;
|
||||
zmq::fd_t maxfd;
|
||||
#endif
|
||||
|
||||
|
||||
socket_poller_t (const socket_poller_t&);
|
||||
const socket_poller_t &operator = (const socket_poller_t&);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user