fix for Sun C++ 5.8

This commit is contained in:
Martin Sustrik 2010-04-10 16:27:07 +02:00
parent 770aedbd09
commit c214a24f06
3 changed files with 6 additions and 0 deletions

View File

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

View File

@ -94,5 +94,7 @@ int zmq::queue (class socket_base_t *insocket_,
has_response = false;
}
}
return 0;
}

View File

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