We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3431f68 commit eff9bcbCopy full SHA for eff9bcb
zmq.hpp
@@ -624,11 +624,7 @@ namespace zmq
624
625
inline size_t send (const void *buf_, size_t len_, int flags_ = 0)
626
{
627
-#if ZMQ_VERSION >= ZMQ_MAKE_VERSION(4, 0, 8)
628
- int nbytes = zmq_send_const (ptr, buf_, len_, flags_);
629
-#else
630
int nbytes = zmq_send (ptr, buf_, len_, flags_);
631
-#endif
632
if (nbytes >= 0)
633
return (size_t) nbytes;
634
if (zmq_errno () == EAGAIN)
0 commit comments