diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-03-13 14:40:10 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-03-13 14:40:10 +0100 |
commit | 61ad236e9543a569fe066872a5fda4fa40ea7591 (patch) | |
tree | 7b31a4611a29979692a59fc7e0464451bddc4df3 /include | |
parent | c42343d3f027248514344aec9e3814dfe1047d59 (diff) |
ZMQ_NOFLUSH and zmq_flush obsoleted
Diffstat (limited to 'include')
-rw-r--r-- | include/zmq.hpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/zmq.hpp b/include/zmq.hpp index 3ddc043..6228133 100644 --- a/include/zmq.hpp +++ b/include/zmq.hpp @@ -236,13 +236,6 @@ namespace zmq throw error_t (); } - inline void flush () - { - int rc = zmq_flush (ptr); - if (rc != 0) - throw error_t (); - } - inline bool recv (message_t *msg_, int flags_ = 0) { int rc = zmq_recv (ptr, msg_, flags_); |