From 67ca7dcbe6b072b74a112ce4df4529cda82c0f13 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Fri, 4 Jun 2010 15:24:06 +0200 Subject: obsolete API elements removed - this commit breaks backward compatibility --- include/zmq.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/zmq.hpp') diff --git a/include/zmq.hpp b/include/zmq.hpp index d19f642..86ffff6 100644 --- a/include/zmq.hpp +++ b/include/zmq.hpp @@ -167,9 +167,9 @@ namespace zmq public: - inline context_t (int app_threads_, int io_threads_, int flags_ = 0) + inline context_t (int io_threads_) { - ptr = zmq_init (app_threads_, io_threads_, flags_); + ptr = zmq_init (io_threads_); if (ptr == NULL) throw error_t (); } -- cgit v1.2.3