From 1450c16b363f6690ca3e121b978ee08acf26a006 Mon Sep 17 00:00:00 2001 From: Ding Li Date: Mon, 22 May 2017 10:57:01 +0800 Subject: [PATCH] Fix #3: delete deprecated comment of Socket contructor --- Include/Zmq/Socket.mqh | 1 - 1 file changed, 1 deletion(-) 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));}}