Commit f67a1993 authored by AJ Lewis's avatar AJ Lewis

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.
parent d2ee38ac
...@@ -381,15 +381,15 @@ typedef struct ...@@ -381,15 +381,15 @@ typedef struct
ZMQ_EXPORT int zmq_poll (zmq_pollitem_t *items, int nitems, long timeout); 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); ZMQ_EXPORT int zmq_proxy (void *frontend, void *backend, void *capture);
// Deprecated aliases /* Deprecated aliases */
#define ZMQ_STREAMER 1 #define ZMQ_STREAMER 1
#define ZMQ_FORWARDER 2 #define ZMQ_FORWARDER 2
#define ZMQ_QUEUE 3 #define ZMQ_QUEUE 3
// Deprecated method /* Deprecated method */
ZMQ_EXPORT int zmq_device (int type, void *frontend, void *backend); ZMQ_EXPORT int zmq_device (int type, void *frontend, void *backend);
#undef ZMQ_EXPORT #undef ZMQ_EXPORT
......
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