Merge pull request #425 from Astellar/zmq_msg_t

zmq_msg_t will now typedef a named struct.
This commit is contained in:
Pieter Hintjens 2012-09-21 09:09:00 -07:00
commit a6c6054ef2

View File

@ -176,7 +176,7 @@ ZMQ_EXPORT int zmq_term (void *context);
/* 0MQ message definition. */
/******************************************************************************/
typedef struct {unsigned char _ [32];} zmq_msg_t;
typedef struct zmq_msg_t {unsigned char _ [32];} zmq_msg_t;
typedef void (zmq_free_fn) (void *data, void *hint);