diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-06-04 15:24:06 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-06-04 15:24:06 +0200 |
commit | 67ca7dcbe6b072b74a112ce4df4529cda82c0f13 (patch) | |
tree | 8837e75fa23a902fe3b00a8f18aa1b80637394a4 /src | |
parent | d844a90690af357988b1c5ba027c740d4182d753 (diff) |
obsolete API elements removed - this commit breaks backward compatibility
Diffstat (limited to 'src')
-rw-r--r-- | src/zmq.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/zmq.cpp b/src/zmq.cpp index c32fd65..c8f419a 100644 --- a/src/zmq.cpp +++ b/src/zmq.cpp @@ -226,9 +226,7 @@ size_t zmq_msg_size (zmq_msg_t *msg_) return ((zmq::msg_content_t*) msg_->content)->size; } -// TODO: app_threads and flags parameters are not used anymore... -// Reflect this in the API/ABI. -void *zmq_init (int /*app_threads_*/, int io_threads_, int /*flags_*/) +void *zmq_init (int io_threads_) { if (io_threads_ < 0) { errno = EINVAL; |