Commit c214a24f authored by Martin Sustrik's avatar Martin Sustrik

fix for Sun C++ 5.8

parent 770aedbd
......@@ -33,4 +33,6 @@ int zmq::forwarder (socket_base_t *insocket_, socket_base_t *outsocket_)
insocket_->recv (&msg, 0);
outsocket_->send (&msg, 0);
}
return 0;
}
......@@ -94,5 +94,7 @@ int zmq::queue (class socket_base_t *insocket_,
has_response = false;
}
}
return 0;
}
......@@ -33,4 +33,6 @@ int zmq::streamer (socket_base_t *insocket_, socket_base_t *outsocket_)
insocket_->recv (&msg, 0);
outsocket_->send (&msg, 0);
}
return 0;
}
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