obsolete API elements removed - this commit breaks backward compatibility

This commit is contained in:
Martin Sustrik
2010-06-04 15:24:06 +02:00
parent d844a90690
commit 67ca7dcbe6
10 changed files with 11 additions and 22 deletions

View File

@@ -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 ();
}