Commit 940c5b34 authored by Martin Sustrik's avatar Martin Sustrik

zmq_msg_t changed to structure

zmq_msg_t being defined as unsigned char[32] could not be stored
in STL containers. Fixed by this commit.
Signed-off-by: 's avatarMartin Sustrik <sustrik@250bpm.com>
parent dd7c629a
......@@ -125,7 +125,7 @@ ZMQ_EXPORT const char *zmq_strerror (int errnum);
/* 0MQ message definition. */
/******************************************************************************/
typedef unsigned char zmq_msg_t [32];
typedef struct {unsigned char _ [32];} zmq_msg_t;
typedef void (zmq_free_fn) (void *data, void *hint);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment