0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-03-17 16:43:58 +00:00

Older versions of C compilers don't like C++ comments

There's no need to exclude older compilers by putting C++ style
comments in the C API header.

Signed-off-by: AJ Lewis <aj.lewis@quantum.com>
This commit is contained in:
AJ Lewis 2012-11-05 11:27:13 -06:00
parent ed9c7440d2
commit 4527d8db6f

@ -381,15 +381,15 @@ typedef struct
ZMQ_EXPORT int zmq_poll (zmq_pollitem_t *items, int nitems, long timeout);
// Built-in message proxy (3-way)
/* Built-in message proxy (3-way) */
ZMQ_EXPORT int zmq_proxy (void *frontend, void *backend, void *capture);
// Deprecated aliases
/* Deprecated aliases */
#define ZMQ_STREAMER 1
#define ZMQ_FORWARDER 2
#define ZMQ_QUEUE 3
// Deprecated method
/* Deprecated method */
ZMQ_EXPORT int zmq_device (int type, void *frontend, void *backend);
#undef ZMQ_EXPORT