Commit bdf22e9c authored by malosek's avatar malosek

deleted useles iostream include from socket_base.cpp

parent 1a4d6f91
...@@ -17,8 +17,6 @@ ...@@ -17,8 +17,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <iostream>
#include <string> #include <string>
#include <algorithm> #include <algorithm>
...@@ -254,7 +252,7 @@ int zmq::socket_base_t::connect (const char *addr_) ...@@ -254,7 +252,7 @@ int zmq::socket_base_t::connect (const char *addr_)
#if defined ZMQ_HAVE_OPENPGM #if defined ZMQ_HAVE_OPENPGM
if (addr_type == "pgm") { if (addr_type == "pgm") {
switch (type) { switch (type) {
case ZMQ_PUB: case ZMQ_PUB:
{ {
...@@ -267,7 +265,7 @@ int zmq::socket_base_t::connect (const char *addr_) ...@@ -267,7 +265,7 @@ int zmq::socket_base_t::connect (const char *addr_)
delete pgm_sender; delete pgm_sender;
return -1; return -1;
} }
// Reserve a sequence number for following 'attach' command. // Reserve a sequence number for following 'attach' command.
session->inc_seqnum (); session->inc_seqnum ();
send_attach (session, pgm_sender); send_attach (session, pgm_sender);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment