diff options
Diffstat (limited to 'bindings/cpp')
-rw-r--r-- | bindings/cpp/zmq.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/cpp/zmq.hpp b/bindings/cpp/zmq.hpp index 471d1d8..a9e63b5 100644 --- a/bindings/cpp/zmq.hpp +++ b/bindings/cpp/zmq.hpp @@ -180,9 +180,9 @@ namespace zmq public: - inline context_t (int app_threads_, int io_threads_) + inline context_t (int app_threads_, int io_threads_, int flags_ = 0) { - ptr = zmq_init (app_threads_, io_threads_); + ptr = zmq_init (app_threads_, io_threads_, flags_); if (ptr == NULL) throw error_t (); } |