diff --git a/Include/Zmq/Socket.mqh b/Include/Zmq/Socket.mqh index 9ba51a7..014daa5 100644 --- a/Include/Zmq/Socket.mqh +++ b/Include/Zmq/Socket.mqh @@ -102,7 +102,6 @@ int zmq_proxy_steerable(intptr_t frontend_ref,intptr_t backend_ref,intptr_t capt class Socket: public SocketOptions { public: - //--- it is not recommended to use this constructor directly: use Context factory methods instead Socket(const Context &ctx,int type):SocketOptions(zmq_socket(ctx.ref(),type)){} virtual ~Socket() {if(0!=zmq_close(m_ref)){Debug(StringFormat("Failed to close socket 0x%0X",m_ref));}}