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

@@ -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&);
};